EngineKit
Sphere.h
1 
2 
3 @protocol SphereExport <JSExport>
4 + (instancetype)create;
5 //
6 @property (nonatomic, strong) id position;
7 @property (nonatomic, strong) id rotation;
8 @property (nonatomic, strong) id scale;
9 //
10 @property (nonatomic, strong) id color;
11 //
12 @property (nonatomic) CGFloat radius;
13 @end
14 
15 
19 @interface Sphere : Shape <SphereExport>
25 + (instancetype)sphere;
26 
31 @property (nonatomic) CGFloat radius;
32 @end
instancetype sphere()
Definition: Sphere.m:8
Definition: Sphere.h:3
Definition: Shape.h:10
CGFloat radius
Definition: Sphere.h:31
Definition: Sphere.h:19