MatrixMultiply Operator (Matrix, Vector3)
|
Product of a matrix with a vector.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector3 operator *(
Matrix a,
Vector3 u
)
Public Shared Operator * (
a As Matrix,
u As Vector3
) As Vector3
public:
static Vector3 operator *(
Matrix a,
Vector3 u
)
static let inline (*)
a : Matrix *
u : Vector3 : Vector3
STATIC OPERATOR *(
a AS Matrix,
u AS Vector3
) AS Vector3
Parameters
- a
- Type: DXFReaderNETMatrix
Matrix. - u
- Type: DXFReaderNETVector3
Vector3d.
Return Value
Type:
Vector3Matrix.
Remarks Matrix adopts the convention of using column vectors to represent three dimensional points.
See Also