w property

double w
inherited

Access the w component of the quaternion.

Implementation

double get w => _qStorage[3];
  1. @override
void w=(double w)
override

Implementation

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