NewTOAPIA.float3x3.Scale C# (CSharp) Method

Scale() public static method

Scale by sx, sy
public static Scale ( float sx, float sy ) : float3x3
sx float
sy float
return float3x3
        public static float3x3 Scale(float sx, float sy)
        {
            return new float3x3(sx, 0f, 0f,
                            0f, sy, 0f,
                            0f, 0f, 1f);
        }