motion Flashcards
(9 cards)
1
Q
move (10) steps
A
x += 10
2
Q
turn cw (15) degrees
A
direction += 15
3
Q
turn ccw (15) degrees
A
direction -= 15
4
Q
go to x: (x) y: (y)
A
x = ( ) , y = ( )
5
Q
point in direction (90)
A
direction = 90
6
Q
change x by (10)
A
x += 10
7
Q
set x to (0)
A
x = 0
8
Q
change y by (10)
A
y += 10
9
Q
set y to (0)
A
y = 0