w property

double get w
inherited

Access the w component of the quaternion.

Implementation

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

Implementation

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