x property

double x
inherited

Access the x component of the quaternion.

Implementation

double get x => _qStorage[0];
  1. @override
void x=(double x)
override

Implementation

@override
set x(double x) {
  super.x = x;
  notifyListeners();
}