diff options
Diffstat (limited to 'Spear/Physics/Rigid.hs')
-rw-r--r-- | Spear/Physics/Rigid.hs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Spear/Physics/Rigid.hs b/Spear/Physics/Rigid.hs index c3b4cfa..6d3c4d7 100644 --- a/Spear/Physics/Rigid.hs +++ b/Spear/Physics/Rigid.hs | |||
@@ -20,10 +20,10 @@ import Control.Monad.State | |||
20 | 20 | ||
21 | 21 | ||
22 | data RigidBody = RigidBody | 22 | data RigidBody = RigidBody |
23 | { mass :: Float | 23 | { mass :: !Float |
24 | , position :: Vector3 | 24 | , position :: !Vector3 |
25 | , velocity :: Vector3 | 25 | , velocity :: !Vector3 |
26 | , acceleration :: Vector3 | 26 | , acceleration :: !Vector3 |
27 | } | 27 | } |
28 | 28 | ||
29 | 29 | ||