From 16df94c12ab85ed588c0f04a1655a87fa0e2d94f Mon Sep 17 00:00:00 2001 From: David Thompson Date: Wed, 8 Sep 2021 09:15:05 -0400 Subject: math: matrix: Remove references to old vec3-dot-product procedure. Oopsies. --- chickadee/math/matrix.scm | 6 +++--- 1 file 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) -- cgit v1.2.3