EngineKit
Plane.h
1 
2 
3 @class Plane;
4 
5 
6 @protocol PlaneExport <JSExport>
7 + (instancetype)create;
8 //
9 @property (nonatomic, strong) id position;
10 @property (nonatomic, strong) id rotation;
11 @property (nonatomic, strong) id scale;
12 //
13 @property (nonatomic, strong) id color;
14 //
15 + (instancetype)plane;
16 @property (nonatomic) CGFloat width;
17 @property (nonatomic) CGFloat height;
18 @end
19 
20 
24 @interface Plane : Shape <PlaneExport>
25 
31 + (instancetype)plane;
32 
37 @property (nonatomic) CGFloat width;
42 @property (nonatomic) CGFloat height;
43 @end
Definition: Plane.h:24
Definition: Plane.h:6
Definition: Shape.h:10
CGFloat height
Definition: Plane.h:42
CGFloat width
Definition: Plane.h:37
instancetype plane()
Definition: Plane.m:8