SketchUp SDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
geometry.h
Go to the documentation of this file.
1 // Copyright 2013 Trimble Navigation Ltd., All rights reserved.
2 
3 #ifndef SLAPI_GEOMETRY_H_
4 #define SLAPI_GEOMETRY_H_
5 
6 #pragma pack(push, 8)
7 
12 struct SUPoint2D {
13  double x;
14  double y;
15 };
16 
21 struct SUPoint3D {
22  double x;
23  double y;
24  double z;
25 };
26 
31 struct SUVector3D {
32  double x;
33  double y;
34  double z;
35 };
36 
43 struct SUPlane3D {
44  double a;
45  double b;
46  double c;
47  double d;
48 };
49 
58 };
59 
60 #pragma pack(pop)
61 
62 #endif // SLAPI_GEOMETRY_H_