MatrixMultiply Method (Matrix, Vector3)
|
Product of a matrix with a vector.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Vector3 Multiply(
Matrix a,
Vector3 u
)
Public Shared Function Multiply (
a As Matrix,
u As Vector3
) As Vector3
public:
static Vector3 Multiply(
Matrix a,
Vector3 u
)
static member Multiply :
a : Matrix *
u : Vector3 -> Vector3
STATIC METHOD Multiply(
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