Skip to content
This repository was archived by the owner on Sep 14, 2019. It is now read-only.

Commit 92afd5f

Browse files
authored
delete space in coordinates
1 parent 850edb2 commit 92afd5f

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Robot2018/src/org/usfirst/frc/team199/Robot2018/autonomous/aaa-reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Ex:
1212
```
1313
1 | LLRx:
1414
2 | wait 5 # wait for other robots to move past
15-
3 | move (12, 24) (30, 48.5) 125.75 # move to those points and turn
15+
3 | move (12,24) (30,48.5) 125.75 # move to those points and turn
1616
4 | scale # place cube in scale
1717
5 | end # end the script (not necessary)
1818
```
@@ -49,8 +49,8 @@ Ex:
4949
| intake | Intakes a cube in front of the robot. | `intake` |
5050
| jump | Jumps to the specified script and continues the current script when finished. (Doesn’t make the robot go up.) | `jump MoveToRScale`
5151
| move | Move forward or backwards for the specified amount in inches, relative to the current position. | `move 24` |
52-
| moveto | Move to 1 or more points, sequentially, with an optional last value having a final angle to face towards, all relative to the starting position. | `moveto (12, 0) (36, 12)` <br> `moveto (0, 12) 90` |
52+
| moveto | Move to 1 or more points, sequentially, with an optional last value having a final angle to face towards, all relative to the starting position. | `moveto (12,0) (36,12)` <br> `moveto (0,12) 90` |
5353
| scale | Place a cube at scale height. | `scale` |
5454
| switch | Place a cube at switch height. | `switch` |
55-
| turn | Turn towards a relative point or rotate clockwise by an angle in degrees, relative to the current position. <br> Negative angle for counterclockwise. | `turn (36, 48)` <br> `turn 45` |
55+
| turn | Turn towards a relative point or rotate clockwise by an angle in degrees, relative to the current position. <br> Negative angle for counterclockwise. | `turn (36,48)` <br> `turn 45` |
5656
| wait | Waits for the number of seconds before proceeding to next command. | `wait 5` |

0 commit comments

Comments
 (0)