cube now spinn in 3d

This commit is contained in:
2024-08-06 17:35:38 +10:00
parent c30ba9a5ca
commit 3b33842260
4 changed files with 83 additions and 3 deletions

View File

@ -0,0 +1,4 @@
public extension FloatingPoint {
@inline(__always) var degrees: Self { self * (180 / Self.pi) }
@inline(__always) var radians: Self { self * (Self.pi / 180) }
}