Re-arrange source code and tests

This commit is contained in:
Guille Gonzalez
2026-01-04 07:01:24 +01:00
parent 0e865739f5
commit fe6df90c4a
18 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import Foundation
extension Math {
final class Space: Atom {
var amount: CGFloat
init(_ space: Space) {
self.amount = space.amount
super.init(space)
}
init(amount: CGFloat = 0) {
self.amount = amount
super.init(type: .space)
}
}
}