summaryrefslogtreecommitdiff
path: root/chickadee
diff options
context:
space:
mode:
authorDavid Thompson <dthompson2@worcester.edu>2021-09-08 09:15:05 -0400
committerDavid Thompson <dthompson2@worcester.edu>2021-09-08 09:15:05 -0400
commit16df94c12ab85ed588c0f04a1655a87fa0e2d94f (patch)
tree60b71cf421de375b04ec2215254601c2d6d86474 /chickadee
parent37312bb2c9ce6f2bb778e043a8697729bce81a0a (diff)
math: matrix: Remove references to old vec3-dot-product procedure.
Oopsies.
Diffstat (limited to 'chickadee')
-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)