Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docs: Fix typo in Matrix4#makeShear #22059

Merged
merged 1 commit into from
Jun 29, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs/api/en/math/Matrix4.html
Original file line number Diff line number Diff line change
Expand Up @@ -319,12 +319,12 @@ <h3>[method:this makeScale]( [param:Float x], [param:Float y], [param:Float z] )

<h3>[method:this makeShear]( [param:Float xy], [param:Float xz], [param:Float yx], [param:Float yz], [param:Float zx], [param:Float zy] )</h3>
<p>
[page:Float x] - the amount to shear X by Y.<br />
[page:Float x] - the amount to shear X by Z.<br />
[page:Float x] - the amount to shear Y by X.<br />
[page:Float x] - the amount to shear Y by Z.<br />
[page:Float y] - the amount to shear Z by X.<br />
[page:Float z] - the amount to shear Z by Y.<br /><br />
[page:Float xy] - the amount to shear X by Y.<br />
[page:Float xz] - the amount to shear X by Z.<br />
[page:Float yx] - the amount to shear Y by X.<br />
[page:Float yz] - the amount to shear Y by Z.<br />
[page:Float zx] - the amount to shear Z by X.<br />
[page:Float zy] - the amount to shear Z by Y.<br /><br />

Sets this matrix as a shear transform:
<code>
Expand Down