mirror of
https://github.com/GayPizzaSpecifications/voxelotl-engine.git
synced 2025-08-02 21:00:57 +00:00
5 lines
165 B
Swift
5 lines
165 B
Swift
public extension FloatingPoint {
|
|
@inline(__always) var degrees: Self { self * (180 / Self.pi) }
|
|
@inline(__always) var radians: Self { self * (Self.pi / 180) }
|
|
}
|