mirror of
https://github.com/odin-lang/Odin.git
synced 2026-04-20 13:25:19 +00:00
Merge pull request #6272 from Ribiveer/patch-1
Fix cross_3d in demo.odin
This commit is contained in:
@@ -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}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user