w property

double get w

Access the w component of the quaternion.

Implementation

double get w => _qStorage[3];
set w (double w)

Implementation

set w(double w) {
  _qStorage[3] = w;
}