Enum IGDIPlus.TGPMatrixOrder
From Mitov Wiki Doc
This is a Beta Read Only version of this page. Please review and send recommendations to mitov@mitov.com. We will enable the editing as soon as we are happy with the overall Wiki site.
Package: SignalLabBasicPkg
Unit: IGDIPlus
Contents |
Syntax
Delphi:
type TGPMatrixOrder = (MatrixOrderPrepend, MatrixOrderAppend);
C++ Builder:
enum TGPMatrixOrder {MatrixOrderPrepend, MatrixOrderAppend};
Visual C++ (MFC):
enum CTGPMatrixOrder {MatrixOrderPrepend, MatrixOrderAppend};
Summary
Specifies the order of multiplication when a new matrix is multiplied by an existing matrix.
Description
Defines enumeration that specifies the order of multiplication when a new matrix is multiplied by an existing matrix.
Values
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. |