11 void Thing::addSpeed(double xspeed
, double yspeed
) {
12 setSpeed(velocidade
.x
+xspeed
,velocidade
.y
+yspeed
);
15 void Thing::setSpeed(double xspeed
, double yspeed
) {
16 velocidade
.x
= std::max(std::min(xspeed
,maxspeed
.x
),-maxspeed
.x
);
17 velocidade
.y
= std::max(std::min(yspeed
,maxspeed
.y
),-maxspeed
.y
);
20 void Thing::setPosition(double x
, double y
) {
26 posicao
.x
+= velocidade
.x
;
27 posicao
.y
+= velocidade
.y
;
30 Linha
Thing::getBaseLine() {
35 Polygon
Thing::getCollision() {
40 void Thing::collide(Thing
* b
) {
44 bool Thing::canCollide(Thing
* b
) {