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

Commit

Permalink
Tune auto paths from left side
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewda committed Sep 23, 2018
1 parent 1553ae5 commit 3ac6fb9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/org/sert2521/powerup/autonomous/Paths.kt
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ object LeftToLeftSwitchPath : PathBase() {
override var points = arrayOf(
0.0 with 3.0 angle 0.0,
2.2 with 3.1 angle 0.0,
3.4 with 1.8 angle 90.0
3.4 with 1.7 angle 90.0
)
}

Expand Down Expand Up @@ -242,15 +242,15 @@ object LeftToLeftScalePath : PathBase() {
override var points = arrayOf(
0.0 with 3.0 angle 0.0,
4.2 with 3.0 angle 0.0,
6.75 with 2.0 angle -30.0
6.6 with 2.2 angle -30.0
)
}

object RightToRightScalePath : PathBase() {
override var points = arrayOf(
0.0 with -3.0 angle 0.0,
4.2 with -3.0 angle 0.0,
6.7 with -2.4 angle 30.0
6.7 with -2.5 angle 30.0
)
}

Expand Down Expand Up @@ -280,7 +280,7 @@ object LeftSwitchToRearPath : PathBase() {
override var points = arrayOf(
4.0 with -2.0 angle -90.0,
3.3 with -2.3 angle 0.0,
2.7 with -1.3 angle 180.0
2.7 with -0.95 angle 180.0
)
}

Expand Down

0 comments on commit 3ac6fb9

Please sign in to comment.