-
Notifications
You must be signed in to change notification settings - Fork 37
/
PLStructs.h
executable file
·113 lines (98 loc) · 2.29 KB
/
PLStructs.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
/*
* PanoramaGL library
* Version 0.1
* Copyright (c) 2010 Javier Baez <[email protected]>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma mark -
#pragma mark structs definitions
struct PLRange
{
CGFloat min;
CGFloat max;
};
typedef struct PLRange PLRange;
struct PLVertex
{
CGFloat x, y, z;
};
typedef struct PLVertex PLVertex;
typedef struct PLVertex PLPosition;
struct PLRotation
{
CGFloat pitch, yaw, roll;
};
typedef struct PLRotation PLRotation;
struct PLShakeData
{
long lastTime;
PLPosition shakePosition;
PLPosition shakeLastPosition;
};
typedef struct PLShakeData PLShakeData;
struct PLRect
{
PLPosition leftTop;
PLPosition rightBottom;
};
typedef struct PLRect PLRect;
struct PLRGBA
{
float red, green, blue, alpha;
};
typedef struct PLRGBA PLRGBA;
#pragma mark -
#pragma mark structs constructors
CG_INLINE PLRange
PLRangeMake(CGFloat min, CGFloat max)
{
PLRange range = {min, max};
return range;
}
CG_INLINE PLVertex
PLVertexMake(CGFloat x, CGFloat y, CGFloat z)
{
PLVertex vertex = {x, y, z};
return vertex;
}
CG_INLINE PLPosition
PLPositionMake(CGFloat x, CGFloat y, CGFloat z)
{
PLPosition position = {x, y, z};
return position;
}
CG_INLINE PLRotation
PLRotationMake(CGFloat pitch, CGFloat yaw, CGFloat roll)
{
PLRotation rotation = {pitch, yaw, roll};
return rotation;
}
CG_INLINE PLShakeData
PLShakeDataMake(long lastTime)
{
PLShakeData shakeData = {lastTime, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f, 0.0f};
return shakeData;
}
CG_INLINE PLRect
PLRectMake(CGFloat left, CGFloat top, CGFloat zLeftTop, CGFloat right, CGFloat bottom, CGFloat zRightBottom)
{
PLRect rect = {left, top, zLeftTop, right, bottom, zRightBottom};
return rect;
}
CG_INLINE PLRGBA
PLRGBAMake(float red, float green, float blue, float alpha)
{
PLRGBA rgb = {red, green, blue, alpha};
return rgb;
}