MatrixRotateXYZ function

Matrix4 MatrixRotateXYZ(
  1. Vector3 angle
)

Implementation

Matrix4 MatrixRotateXYZ(Vector3 angle) =>
    Matrix4.rotationX(angle.x) *
    Matrix4.rotationY(angle.y) *
    Matrix4.rotationZ(angle.z);