Builds a rotation matrix for a rotation around the z-axis.
Namespace:
DXFReaderNET
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public static Matrix RotationZ(
double angle
)
Public Shared Function RotationZ (
angle As Double
) As Matrix
public:
static Matrix RotationZ(
double angle
)
static member RotationZ :
angle : float -> Matrix
STATIC METHOD RotationZ(
angle AS REAL8
) AS Matrix
Parameters
- angle
- Type: SystemDouble
The counter-clockwise angle in radians.
Return Value
Type:
MatrixThe resulting Matrix instance.
Remarks Matrix adopts the convention of using column vectors to represent three dimensional points.
See Also