| Matrix44FMinor 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 Matrix33F Minor { get; set; }
<XmlIgnoreAttribute>
<ContentSerializerIgnoreAttribute>
Public Property Minor As Matrix33F
Get
Set
public:
[XmlIgnoreAttribute]
[ContentSerializerIgnoreAttribute]
property Matrix33F Minor {
Matrix33F get ();
void set (Matrix33F value);
}
[<XmlIgnoreAttribute>]
[<ContentSerializerIgnoreAttribute>]
member Minor : Matrix33F with get, set
Property Value
Type:
Matrix33F
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