From 666c64051ab5ed7a2589efce77781893638a77c2 Mon Sep 17 00:00:00 2001 From: Ribiveer <55600063+Ribiveer@users.noreply.github.com> Date: Sat, 14 Feb 2026 02:11:05 +0100 Subject: Fix cross_3d in demo.odin Not a very significant or meaningful change, but it did irk me that the equation was wrong... --- examples/demo/demo.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/demo/demo.odin b/examples/demo/demo.odin index 294668f14..a5455846d 100644 --- a/examples/demo/demo.odin +++ b/examples/demo/demo.odin @@ -1606,7 +1606,7 @@ where_clauses :: proc() { where intrinsics.type_is_numeric(E) { x := a.y*b.z - a.z*b.y y := a.z*b.x - a.x*b.z - z := a.x*b.y - a.y*b.z + z := a.x*b.y - a.y*b.x return T{x, y, z} } -- cgit v1.2.3