Files
swiftui-math/Sources/SwiftUIMath/Internal/Model/Atoms/Space.swift
Guille Gonzalez e66eeb4564 Refactor model
2026-01-02 15:24:11 +01:00

18 lines
282 B
Swift

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)
}
}
}