Request

Response

    Matrix4d constructor (1 of 3)

    Creates a new Matrix4d instance with an identity matrix.

    public Matrix4d()
    

    See Also


    Matrix4d constructor (2 of 3)

    Creates a new Matrix4d instance with a specified array of values.

    public Matrix4d(double[] values)
    
    parameterdescription
    values An array of 16 float values representing the elements of the matrix.

    Exceptions

    exceptioncondition
    ArgumentException Thrown when the array does not have 16 elements.

    See Also


    Matrix4d constructor (3 of 3)

    Creates a new Matrix4d instance with the specified matrix elements.

    public Matrix4d(double m11, double m12, double m13, double m14, double m21, double m22, double m23, 
        double m24, double m31, double m32, double m33, double m34, double m41, double m42, double m43, 
        double m44)
    
    parameterdescription
    m11 The value for the first row, first column of the matrix.
    m12 The value for the first row, second column of the matrix.

    See Also