setEuler method

  1. @override
void setEuler(
  1. double yaw,
  2. double pitch,
  3. double roll
)
override

Set quaternion with rotation of yaw, pitch and roll.

Implementation

@override
void setEuler(double yaw, double pitch, double roll) {
  super.setEuler(yaw, pitch, roll);
  notifyListeners();
}