aboutsummaryrefslogtreecommitdiff
path: root/src/Utils
diff options
context:
space:
mode:
authorJoris Guyonvarch2015-05-10 16:59:08 +0200
committerJoris Guyonvarch2015-05-10 16:59:08 +0200
commit5af770bd99dbb57d78857236c054bc0a6dc4bdfd (patch)
treea15a021df539302767281296c66bb8fdf2d0bae1 /src/Utils
parentd5ec91d4d01db6f4d476522d5b14e116435ebb7d (diff)
downloadcatchvoid-5af770bd99dbb57d78857236c054bc0a6dc4bdfd.tar.gz
catchvoid-5af770bd99dbb57d78857236c054bc0a6dc4bdfd.tar.bz2
catchvoid-5af770bd99dbb57d78857236c054bc0a6dc4bdfd.zip
Updating elm version to 0.15
Diffstat (limited to 'src/Utils')
-rw-r--r--src/Utils/Geometry.elm2
-rw-r--r--src/Utils/Physics.elm2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Utils/Geometry.elm b/src/Utils/Geometry.elm
index 323422b..5e0d4a2 100644
--- a/src/Utils/Geometry.elm
+++ b/src/Utils/Geometry.elm
@@ -4,7 +4,7 @@ module Utils.Geometry
, inBoard
) where
-import Model.Vec2 (..)
+import Model.Vec2 exposing (..)
polarToCartesian : Float -> Float -> Vec2
polarToCartesian angle dist =
diff --git a/src/Utils/Physics.elm b/src/Utils/Physics.elm
index 751af6c..acf37ae 100644
--- a/src/Utils/Physics.elm
+++ b/src/Utils/Physics.elm
@@ -4,7 +4,7 @@ module Utils.Physics
, getWaveMove
) where
-import Model.Vec2 (..)
+import Model.Vec2 exposing (..)
getNewPosAndSpeed : Float -> Vec2 -> (Float -> Float) -> (Vec2, Vec2) -> (Vec2, Vec2)
getNewPosAndSpeed dt dir computeSpeed (pos, speed) =