z property

double get z

Access the z component of the quaternion.

Implementation

double get z => _qStorage[2];
set z (double z)

Implementation

set z(double z) {
  _qStorage[2] = z;
}