Guest User

Untitled

a guest
Dec 25th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. accelerateShip
  2.  
  3.     |loc rot aSinDelta aCosDelta deltaD|
  4.  
  5. deltaD := 0.01.
  6. loc := self aShip currentLocation.
  7. rot := self aShip currentRotation.
  8. aSinDelta := deltaD * rot degreesToRadians sin .
  9. aCosDelta := deltaD * rot degreesToRadians cos.
  10.  
  11. loc x:  loc x - aSinDelta y: aCosDelta+ loc y  z: loc z.
  12. self aShip currentLocation: loc.
Add Comment
Please, Sign In to add comment