Official iOS/iPadOS/visionOS/tvOS support

This commit is contained in:
Alex Zenla
2024-09-03 05:38:32 -04:00
parent 788cd28994
commit 224bb6616c
10 changed files with 1228 additions and 3 deletions

View File

@ -52,7 +52,7 @@ public struct AABB {
}
public extension AABB {
public static func + (lhs: Self, rhs: SIMD3<Float>) -> Self {
static func + (lhs: Self, rhs: SIMD3<Float>) -> Self {
.init(bounds: lhs._bounds + .init(rhs, rhs))
}
}