summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--chickadee/math/matrix.scm6
1 files changed, 3 insertions, 3 deletions
diff --git a/chickadee/math/matrix.scm b/chickadee/math/matrix.scm
index a075176..355562a 100644
--- a/chickadee/math/matrix.scm
+++ b/chickadee/math/matrix.scm
@@ -612,9 +612,9 @@ clipping plane NEAR and FAR."
(vec3-x xaxis) (vec3-x yaxis) (- (vec3-x zaxis)) 0.0
(vec3-y xaxis) (vec3-y yaxis) (- (vec3-y zaxis)) 0.0
(vec3-z xaxis) (vec3-z yaxis) (- (vec3-z zaxis)) 0.0
- (- (vec3-dot-product xaxis eye))
- (- (vec3-dot-product yaxis eye))
- (vec3-dot-product zaxis eye)
+ (- (vec3-dot xaxis eye))
+ (- (vec3-dot yaxis eye))
+ (vec3-dot zaxis eye)
1.0)))
(define (look-at eye at up)