The Cog3DMatrix3x3 type exposes the following members.
Properties
| Name | Description | |
|---|---|---|
| ChangedEventSuspended |
If nonzero, indicates that the raising of the Changed event has been
suspended. This value is incremented when SuspendChangedEvent is called
and decremented when ResumeAndRaiseChangedEvent is called.
(Inherited from CogSerializableChangedEventBase.) | |
| Determinant |
Gets the determinant of this matrix.
| |
| Element |
This property is deprecated, please use GetElment and SetElement instead.
| |
| HasChanged | (Inherited from CogSerializableChangedEventBase.) | |
| IsIdentity |
Gets whether this matrix is identity.
| |
| IsRotation |
Gets whether this matrix is a pure rotation.
| |
| IsSingular |
Gets whether this matrix is singular.
| |
| ScaleX |
Gets the x scale value of this matrix.
The x scale is defined to be the length of the vector
resulting from mapping the x unit vector through this matrix.
| |
| ScaleY |
Gets the y scale value of this matrix.
The y scale is defined to be the length of the vector
resulting from mapping the y unit vector through this matrix.
| |
| ScaleZ |
Gets the z scale value of this matrix.
The z scale is defined to be the length of the vector
resulting from mapping the z unit vector through this matrix.
| |
| StateFlags |
Returns the complete set of state flags supported on this object. The
flags may be indexed by name as shown in the following C# code snippet:
if (changedObject.StateFlags["Color"] & eventArgs.StateFlags) { ... }
(Inherited from CogSerializableChangedEventBase.) |
See Also