Accord.Imaging.MatrixH.MatrixH C# (CSharp) Method

MatrixH() public method

Creates a new projective matrix.
public MatrixH ( float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32 ) : System
m11 float
m12 float
m13 float
m21 float
m22 float
m23 float
m31 float
m32 float
return System
        public MatrixH(float m11, float m12, float m13,
                       float m21, float m22, float m23,
                       float m31, float m32)
        {
            this.elements = new float[8];
            this.elements[0] = m11; this.elements[1] = m12; this.elements[2] = m13;
            this.elements[3] = m21; this.elements[4] = m22; this.elements[5] = m23;
            this.elements[6] = m31; this.elements[7] = m32;
        }

Same methods

MatrixH::MatrixH ( ) : System
MatrixH::MatrixH ( double matrix ) : System
MatrixH::MatrixH ( float elements ) : System
MatrixH::MatrixH ( float m11, float m12, float m13, float m21, float m22, float m23, float m31, float m32, float m33 ) : System