MatrixRotateZYX function

Matrix4 MatrixRotateZYX(
  1. Vector3 angle
)

Implementation

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