File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed
stdlib/public/SDK/SceneKit Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ set(SWIFT_API_NOTES_INPUTS
24
24
PassKit
25
25
QuartzCore
26
26
QuickLook
27
+ SceneKit
27
28
SpriteKit
28
29
StoreKit
29
30
TVMLKit
Original file line number Diff line number Diff line change
1
+ ---
2
+ Name: SceneKit
3
+
4
+ Protocols:
5
+ # The below are methods for which overlays provide better implementations
6
+ - Name: SCNBoundingVolume
7
+ Methods:
8
+ - Selector: 'getBoundingBoxMin:max:'
9
+ SwiftPrivate: true
10
+ MethodKind: Instance
11
+ - Selector: 'setBoundingBoxMin:max:'
12
+ SwiftPrivate: true
13
+ MethodKind: Instance
14
+ - Selector: 'getBoundingSphereCenter:radius:'
15
+ SwiftPrivate: true
16
+ MethodKind: Instance
17
+
Original file line number Diff line number Diff line change @@ -199,19 +199,19 @@ extension SCNBoundingVolume {
199
199
get {
200
200
var min = SCNVector3Zero
201
201
var max = SCNVector3Zero
202
- getBoundingBoxMin ( & min, max: & max)
202
+ __getBoundingBoxMin ( & min, max: & max)
203
203
return ( min: min, max: max)
204
204
}
205
205
set {
206
206
var min = newValue. min
207
207
var max = newValue. max
208
- setBoundingBoxMin ( & min, max: & max)
208
+ __setBoundingBoxMin ( & min, max: & max)
209
209
}
210
210
}
211
211
public var boundingSphere : ( center: SCNVector3 , radius: Float ) {
212
212
var center = SCNVector3Zero
213
213
var radius = CGFloat ( 0.0 )
214
- getBoundingSphereCenter ( & center, radius: & radius)
214
+ __getBoundingSphereCenter ( & center, radius: & radius)
215
215
return ( center: center, radius: Float ( radius) )
216
216
}
217
217
}
You can’t perform that action at this time.
0 commit comments