Merge pull request #6272 from Ribiveer/patch-1

Fix cross_3d in demo.odin
This commit is contained in:
Jeroen van Rijn
2026-02-14 02:30:03 +01:00
committed by GitHub

View File

@@ -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}
}