diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2026-02-14 02:30:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-14 02:30:03 +0100 |
| commit | f6d3500509ccc20de642472e0bc39bdc2707a673 (patch) | |
| tree | 339f959a9f7aaef2cf556fe356a725b6d7744a06 | |
| parent | d26ad6a0e51a3e02b6d0676eaafda278c39e3197 (diff) | |
| parent | 666c64051ab5ed7a2589efce77781893638a77c2 (diff) | |
Merge pull request #6272 from Ribiveer/patch-1
Fix cross_3d in demo.odin
| -rw-r--r-- | examples/demo/demo.odin | 2 |
1 files changed, 1 insertions, 1 deletions
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} } |