right method

Vector3 right()

Implementation

Vector3 right() {
  return forward().clone()..applyMatrix3(Matrix3.rotationY(Math.pi / 2.0));
}