Reign.Core.Matrix4.Orthographic C# (CSharp) Method

Orthographic() public static method

public static Orthographic ( float width, float height, float near, float far ) : Matrix4
width float
height float
near float
far float
return Matrix4
        public static Matrix4 Orthographic(float width, float height, float near, float far)
        {
            return Orthographic(0, width, 0, height, near, far);
        }

Same methods

Matrix4::Orthographic ( float left, float right, float bottom, float top, float near, float far ) : Matrix4
Matrix4::Orthographic ( float width, float height, float near, float far, Matrix4 &result ) : void
Matrix4::Orthographic ( float left, float right, float bottom, float top, float near, float far, Matrix4 &result ) : void