Fusion.Core.Mathematics.Matrix3x2.Rotation C# (CSharp) Méthode

Rotation() public static méthode

Creates a matrix that rotates.
public static Rotation ( float angle ) : Matrix3x2
angle float Angle of rotation in radians. Angles are measured clockwise when looking along the rotation axis.
Résultat Matrix3x2
        public static Matrix3x2 Rotation(float angle)
        {
            Matrix3x2 result;
            Rotation(angle, out result);
            return result;
        }

Same methods

Matrix3x2::Rotation ( float angle, System.Vector2 center ) : Matrix3x2
Matrix3x2::Rotation ( float angle, Matrix3x2 &result ) : void
Matrix3x2::Rotation ( float angle, System.Vector2 center, Matrix3x2 &result ) : void