| PoseIsValid Method |
Determines whether the specified matrix is a valid pose matrix.
Namespace: DigitalRune.GeometryAssembly: DigitalRune.Geometry (in DigitalRune.Geometry.dll) Version: 1.18.0.0 (1.18.2.14427)
Syntax public static bool IsValid(
Matrix44F matrix
)
Public Shared Function IsValid (
matrix As Matrix44F
) As Boolean
public:
static bool IsValid(
Matrix44F matrix
)
static member IsValid :
matrix : Matrix44F -> bool
Parameters
- matrix
- Type: DigitalRune.Mathematics.AlgebraMatrix44F
The matrix.
Return Value
Type:
Boolean if the specified matrix is a valid pose matrix; otherwise,
.
Remarks
This method makes a simple, low-performance test.
See Also