mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed a documentation typo
This commit is contained in:
parent
d2bcc74f46
commit
d794ce4993
1 changed files with 1 additions and 1 deletions
|
|
@ -97,7 +97,7 @@ public:
|
|||
mat[12] = vector.x; mat[13] = vector.y; mat[14] = vector.z; mat[15] = Type (1);
|
||||
}
|
||||
|
||||
/** Returns a new matrix from the given frustrum values. */
|
||||
/** Returns a new matrix from the given frustum values. */
|
||||
static Matrix3D fromFrustum (Type left, Type right, Type bottom, Type top, Type nearDistance, Type farDistance) noexcept
|
||||
{
|
||||
return { (Type (2) * nearDistance) / (right - left), 0, 0, 0,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue