aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Sunet <jeannekamikaze@gmail.com>2012-09-08 21:20:43 +0200
committerMarc Sunet <jeannekamikaze@gmail.com>2012-09-08 21:20:43 +0200
commit5e3b7e337d66d86d19015046002c282cfc89c2ad (patch)
treeafbff6ce77f408f22b7004dc39c89e0f00392a87
parent56540ac3ca48cc77da0e86389fe550ede1c1081e (diff)
Added viewToWorld2d
-rw-r--r--Spear/Math/Utils.hs20
1 files changed, 19 insertions, 1 deletions
diff --git a/Spear/Math/Utils.hs b/Spear/Math/Utils.hs
index 28f012e..e86cacc 100644
--- a/Spear/Math/Utils.hs
+++ b/Spear/Math/Utils.hs
@@ -3,11 +3,14 @@ module Spear.Math.Utils
3 Side(..) 3 Side(..)
4, Face(..) 4, Face(..)
5, orientation2d 5, orientation2d
6, viewToWorld2d
6) 7)
7where 8where
8 9
9 10
10import Spear.Math.Vector2 11import Spear.Math.Matrix4 as M4
12import Spear.Math.Vector2 as V2
13import qualified Spear.Math.Vector3 as V3
11 14
12 15
13data Side = L | R deriving (Eq, Show) 16data Side = L | R deriving (Eq, Show)
@@ -19,3 +22,18 @@ data Face = F | B deriving (Eq, Show)
19-- | Return the signed area of the triangle defined by the given points. 22-- | Return the signed area of the triangle defined by the given points.
20orientation2d :: Vector2 -> Vector2 -> Vector2 -> Float 23orientation2d :: Vector2 -> Vector2 -> Vector2 -> Float
21orientation2d p q r = (x q - x p) * (y r - y p) - (y q - y p) * (x r - x p) 24orientation2d p q r = (x q - x p) * (y r - y p) - (y q - y p) * (x r - x p)
25
26
27-- | Project the given point in view space onto the XZ plane in world space.
28viewToWorld2d :: Vector2
29 -> Matrix4
30 -> Vector2
31viewToWorld2d p viewI =
32 let
33 p1' = V3.vec3 (V2.x p) (V2.y p) 0
34 p1 = viewI `mulp` p1'
35 p2 = p1 - M4.forward viewI
36 lambda = (V3.y p1 / (V3.y p1 - V3.y p2))
37 p' = p1 + V3.scale lambda (p2 - p1)
38 in
39 vec2 (V3.x p') (-V3.z p')