The MatrixOrder enumeration specifies the order of multiplication when a new matrix is multiplied by an existing matrix.
C++ Syntax
typedef enum {
MatrixOrderPrepend = 0,
MatrixOrderAppend = 1
} MatrixOrder;
FreeBASIC 语法
enum
MatrixOrderPrepend = 0
MatrixOrderAppend = 1
end enum
常数
MatrixOrderPrepend
Specifies that the new matrix is on the left and the existing matrix is on the right.
MatrixOrderAppend
Specifies that the existing matrix is on the left and the new matrix is on the right.