rotateEuler method

void rotateEuler(
  1. double yaw,
  2. double pitch,
  3. double roll
)

Implementation

void rotateEuler(double yaw, double pitch, double roll) {
  final q = Quaternion.euler(yaw, pitch, roll);
  rotate(q);
}