Fusion.Core.Mathematics.Matrix3x2.Transformation C# (CSharp) Метод

Transformation() публичный статический Метод

Creates a transformation matrix.
public static Transformation ( float xScale, float yScale, float angle, float xOffset, float yOffset ) : Matrix3x2
xScale float Scaling factor that is applied along the x-axis.
yScale float Scaling factor that is applied along the y-axis.
angle float Angle of rotation in radians.
xOffset float X-coordinate offset.
yOffset float Y-coordinate offset.
Результат Matrix3x2
        public static Matrix3x2 Transformation(float xScale, float yScale, float angle, float xOffset, float yOffset)
        {
            Matrix3x2 result;
            Transformation(xScale, yScale, angle, xOffset, yOffset, out result);
            return result;
        }

Same methods

Matrix3x2::Transformation ( float xScale, float yScale, float angle, float xOffset, float yOffset, Matrix3x2 &result ) : void