MatrixRotate method

MatrixC MatrixRotate(
  1. Vector3C axis,
  2. double angle
)

Create rotation matrix from axis and angle

NOTE: Angle should be provided in radians

Implementation

MatrixC MatrixRotate(Vector3C axis, double angle)
  => _MatrixRotate(axis, angle);