java.io.Serializable
public class NotARotationMatrixException
extends java.lang.RuntimeException
RuntimeException
dedicated to operations expecting a rotation matrix.Constructor | Description |
---|---|
NotARotationMatrixException() |
Constructs an
NotARotationMatrixException with no detail message. |
NotARotationMatrixException(double m00,
double m01,
double m02,
double m10,
double m11,
double m12,
double m20,
double m21,
double m22) |
Constructs an
NotARotationMatrixException with a default detail message outputting the
given matrix coefficients. |
NotARotationMatrixException(java.lang.String message) |
Constructs an
NotARotationMatrixException with the specified detail message. |
NotARotationMatrixException(Matrix3DReadOnly matrix) |
Constructs an
NotARotationMatrixException with a default detail message outputting the
given matrix coefficients. |
public NotARotationMatrixException()
NotARotationMatrixException
with no detail message.public NotARotationMatrixException(java.lang.String message)
NotARotationMatrixException
with the specified detail message.message
- the detail message.public NotARotationMatrixException(Matrix3DReadOnly matrix)
NotARotationMatrixException
with a default detail message outputting the
given matrix coefficients.matrix
- the matrix to be displayed in the detail message. Not modified.public NotARotationMatrixException(double m00, double m01, double m02, double m10, double m11, double m12, double m20, double m21, double m22)
NotARotationMatrixException
with a default detail message outputting the
given matrix coefficients.m00
- the 1st row 1st column coefficient of the matrix to be displayed in the detail
message.m01
- the 1st row 2nd column coefficient of the matrix to be displayed in the detail
message.m02
- the 1st row 3rd column coefficient of the matrix to be displayed in the detail
message.m10
- the 2nd row 1st column coefficient of the matrix to be displayed in the detail
message.m11
- the 2nd row 2nd column coefficient of the matrix to be displayed in the detail
message.m12
- the 2nd row 3rd column coefficient of the matrix to be displayed in the detail
message.m20
- the 3rd row 1st column coefficient of the matrix to be displayed in the detail
message.m21
- the 3rd row 2nd column coefficient of the matrix to be displayed in the detail
message.m22
- the 3rd row 3rd column coefficient of the matrix to be displayed in the detail
message.