MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / RotationY

Function RotationY

Source/Engine/Core/Math/Matrix.h:687–692  ·  view source on GitHub ↗

Creates a matrix that rotates around the y-axis. Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.

Source from the content-addressed store, hash-verified

685
686 // Creates a matrix that rotates around the y-axis. Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.
687 static Matrix RotationY(float angle)
688 {
689 Matrix result;
690 RotationY(angle, result);
691 return result;
692 }
693
694 // Creates a matrix that rotates around the y-axis. Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis toward the origin.
695 static void RotationY(float angle, Matrix& result);

Callers 7

DrawMethod · 0.85
RotationYMethod · 0.85
RotationYMethod · 0.85
RotationYMethod · 0.85
DrawMethod · 0.85
UpdateCacheMethod · 0.85
DrawIconsMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected