Skip to content

Commit

Permalink
Fix typo in cross product formula (GLSL ES3)
Browse files Browse the repository at this point in the history
The last row of the cross product formula is given as:
> π‘₯[0]⋅𝑦[1]βˆ’π‘¦[1]β‹…π‘₯[1]

It should be:
> π‘₯[0]⋅𝑦[1]βˆ’π‘¦[0]β‹…π‘₯[1]

This PR makes this change.
  • Loading branch information
andystanton authored Mar 17, 2022
1 parent 615c798 commit 3f7ed77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion el3/cross.xhtml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
<mo>βˆ’</mo>
<mi>y</mi>
<mo stretchy="false">[</mo>
<mn>1</mn>
<mn>0</mn>
<mo stretchy="false">]</mo>
<mo lspace="2px" rspace="2px">β‹…</mo>
<mi>x</mi>
Expand Down

0 comments on commit 3f7ed77

Please sign in to comment.