z property

double z

Access the z component of the quaternion.

Implementation

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

Implementation

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