Angle
data class Angle @JvmOverloads constructor(val value: Double = 0.0, val units: AngleUnit) : Comparable<Angle>
Class for representing angles.
Functions
Link copied to clipboard
Returns whether two angles are approximately equal (within EPSILON), but angles which point in the same direction are considered equal as well (e.g., 0° = 360° = 720°).
Link copied to clipboard
Returns whether two angles are approximately equal (within EPSILON).
Link copied to clipboard
Returns the negative of this angle.