Community
Participate
Working Groups
/**
* Returns the reverse {@link Angle} of this {@link Angle} in a full circle
* as a new {@link Angle} object.
*
* @return the reverse {@link Angle} of this {@link Angle} in a full circle
* as a new {@link Angle} object
*/
public Angle getReverse() {
return Angle.fromRad(rad + RAD_180);
}
@Override