From 2f62d040409034af8930287c22a4a4da3980ae45 Mon Sep 17 00:00:00 2001 From: Shinmera Date: Wed, 30 Aug 2023 22:05:29 +0200 Subject: [PATCH] Adjust for 3d-math --- docs/start.mess | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/start.mess b/docs/start.mess index 5ba08bfa7..1ca6b2947 100644 --- a/docs/start.mess +++ b/docs/start.mess @@ -195,7 +195,7 @@ And for testing purposes, let's temporarily just make the cube shoot it when we (case key (:f (enter (make-instance 'bullet :location (location my-cube) :scaling (vec 0.1 0.1 0.1) - :velocity (nv* (q*v (orientation my-cube) +vx3+) 5)) + :velocity (nv* (q* (orientation my-cube) +vx3+) 5)) (container my-cube))))) ::