| Matrix44DMinor Property |
Gets or sets the upper left 3x3 sub-matrix.
Namespace: DigitalRune.Mathematics.AlgebraAssembly: DigitalRune.Mathematics (in DigitalRune.Mathematics.dll) Version: 1.14.0.0 (1.14.0.14427)
Syntax [XmlIgnoreAttribute]
[ContentSerializerIgnoreAttribute]
public Matrix33D Minor { get; set; }
<XmlIgnoreAttribute>
<ContentSerializerIgnoreAttribute>
Public Property Minor As Matrix33D
Get
Set
public:
[XmlIgnoreAttribute]
[ContentSerializerIgnoreAttribute]
property Matrix33D Minor {
Matrix33D get ();
void set (Matrix33D value);
}
[<XmlIgnoreAttribute>]
[<ContentSerializerIgnoreAttribute>]
member Minor : Matrix33D with get, set
Property Value
Type:
Matrix33D
The 3x3 matrix that is produced by removing the last row and column of this matrix.
Remarks
Setting the minor matrix does not affect the elements in the fourth row or column.
See Also