z property

double z
inherited

Access the z component of the quaternion.

Implementation

double get z => _qStorage[2];
  1. @override
void z=(double z)
override

Implementation

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