up property

Vector3 up

Implementation

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