up property

Vector3 up

Implementation

Vector3 get up {
  final double x = _m3storage[3];
  final double y = _m3storage[4];
  final double z = _m3storage[5];
  return new Vector3(x, y, z);
}