Skip to content
This repository has been archived by the owner on Dec 24, 2018. It is now read-only.

Commit

Permalink
Tune paths on real bot
Browse files Browse the repository at this point in the history
  • Loading branch information
SUPERCILEX authored and andrewda committed Mar 4, 2018
1 parent ed0d7b0 commit 57f7e89
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/java/org/sert2521/powerup/autonomous/Paths.kt
Original file line number Diff line number Diff line change
Expand Up @@ -221,21 +221,21 @@ object LeftToRightScalePath : PathBase() {
override var points = arrayOf(
0.0 with 3.0 angle 0.0,
4.5 with 3.0 angle 0.0,
5.0 with 2.4 angle -90.0,
5.0 with -1.5 angle -90.0,
5.2 with -2.0 angle -45.0,
6.75 with -2.2 angle 20.0
5.1 with 2.4 angle -90.0,
5.1 with -1.5 angle -90.0,
5.3 with -2.0 angle -45.0,
6.85 with -1.8 angle 20.0
)
}

object RightToLeftScalePath : PathBase() {
override var points = arrayOf(
0.0 with -3.0 angle 0.0,
4.5 with -3.0 angle 0.0,
5.0 with -2.4 angle 90.0,
5.0 with 1.5 angle 90.0,
5.2 with 2.0 angle 45.0,
6.75 with 2.2 angle -20.0
5.1 with -2.4 angle 90.0,
5.1 with 1.5 angle 90.0,
5.3 with 2.0 angle 45.0,
6.85 with 1.8 angle -20.0
)
}

Expand Down

0 comments on commit 57f7e89

Please sign in to comment.