Skip to content

Commit

Permalink
update spline creation for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mdgriffith committed May 23, 2020
1 parent 0262e9c commit 7d550c2
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions tests/SplineCreation.elm
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ suite =
spline =
Interpolate.createSpline
{ arrival =
{ early = 0
, slowly = 0.8
, wobbliness = 0
}
, departure = { late = 0, slowly = 0.4 }
Interpolate.standardDefault
, departure =
Interpolate.standardDefault
, end = { x = 2000, y = 400 }
, endVelocity = { x = 1000, y = 0 }
, start = { x = 1000, y = 100 }
Expand All @@ -48,11 +46,9 @@ suite =
spline =
Interpolate.createSpline
{ arrival =
{ early = 0
, slowly = 0.8
, wobbliness = 0
}
, departure = { late = 0, slowly = 0.4 }
Interpolate.standardDefault
, departure =
Interpolate.standardDefault
, start = { x = 1000, y = 100 }
, startVelocity = { x = 1000, y = 0 }
, end = { x = 1250, y = 400 }
Expand Down

0 comments on commit 7d550c2

Please sign in to comment.