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

OrthographicCentered() public static method

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

Same methods

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