right property

Vector3 right

Implementation

Vector3 get right {
  final double x = _m4storage[0];
  final double y = _m4storage[1];
  final double z = _m4storage[2];
  return new Vector3(x, y, z);
}