collision boundaries for table corners

This commit is contained in:
nek0 2018-07-31 23:07:23 +02:00
parent 9d4205a939
commit b89fe75a39

View file

@ -76,6 +76,18 @@ instance Collidible ImgId where
[ Boundaries (0, 0) (0.63, 1)
, Boundaries (0, 0.34) (1, 1)
]
collisionObstacle ImgTableC1 =
[ Boundaries (0, 13/36) (13/36, 1)
]
collisionObstacle ImgTableC2 =
[ Boundaries (0, 0) (13/36, 13/36)
]
collisionObstacle ImgTableC3 =
[ Boundaries (1-13/36, 0) (1, 1-13/36)
]
collisionObstacle ImgTableC4 =
[ Boundaries (1-13/36, 1-13/36) (1, 1)
]
collisionObstacle ImgMiscFlipchart =
[ Boundaries (0, 7/36) (18/36, 28/36)
]