Angle
public struct Angle
extension Angle: Equatable
Model of an angle.
-
Angle
with a value of0
.Declaration
Swift
public static let zero: Angle
-
Value within -180°…180°.
Declaration
Swift
public var normalized: Angle { get }
-
Declaration
Swift
public static func == (lhs: Angle, rhs: Angle) -> Bool
Return Value
true
if the normalized values of each angle are equivalent. Otherwise,false
.