opennurbs.h
1 /* $NoKeywords: $ */
2 /*
3 //
4 // Copyright (c) 1993-2016 Robert McNeel & Associates. All rights reserved.
5 // OpenNURBS, Rhinoceros, and Rhino3D are registered trademarks of Robert
6 // McNeel & Associates.
7 //
8 // THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT EXPRESS OR IMPLIED WARRANTY.
9 // ALL IMPLIED WARRANTIES OF FITNESS FOR ANY PARTICULAR PURPOSE AND OF
10 // MERCHANTABILITY ARE HEREBY DISCLAIMED.
11 //
12 // For complete openNURBS copyright information see <http://www.opennurbs.org>.
13 //
14 ////////////////////////////////////////////////////////////////
15 */
16 
17 ////////////////////////////////////////////////////////////////
18 //
19 // Includes all openNURBS toolkit headers required to use the
20 // openNURBS toolkit library. See readme.txt for details.
21 //
22 ////////////////////////////////////////////////////////////////
23 
24 #if !defined(OPENNURBS_INC_)
25 #define OPENNURBS_INC_
26 
27 #define OPENNURBS_INC_IN_PROGRESS
28 
29 #include "opennurbs_system.h" /* system headers used by openNURBS code */
30 
31 #include "opennurbs_wip.h" /* works in progress defines that control availability */
32 
33 #include "opennurbs_3dm.h" /* 3DM typecode (TCODE) definitions */
34 
35 #include "opennurbs_defines.h" /* openNURBS defines and enums */
36 #include "opennurbs_error.h" /* error handling */
37 #include "opennurbs_memory.h" /* memory managment (onmalloc(), onrealloc(), onfree(), ...) */
38 #include "opennurbs_rand.h" /* random number generator */
39 #include "opennurbs_crc.h" /* cyclic redundancy check tool */
40 #include "opennurbs_uuid.h" /* universally unique identifiers (UUID, a.k.a, GUID) */
41 #include "opennurbs_unicode.h" /* unicode string conversion */
42 
43 #if defined(ON_CPLUSPLUS)
44 #include "opennurbs_topology.h"
45 #include "opennurbs_cpp_base.h" // for safe use of STL classes as private data members
46 #include "opennurbs_locale.h"
47 #include "opennurbs_date.h"
48 #include "opennurbs_version_number.h"
49 #include "opennurbs_compstat.h"
50 #include "opennurbs_progress_reporter.h" // ON_ProgressReporter class
51 #include "opennurbs_terminator.h" // ON_Terminator class
52 #include "opennurbs_lock.h" // simple atomic operation lock setter
53 #include "opennurbs_fsp.h" // fixed size memory pool
54 #include "opennurbs_function_list.h" /* list of functions to run */
55 #include "opennurbs_std_string.h" // std::string utilities
56 #include "opennurbs_md5.h"
57 #include "opennurbs_sha1.h"
58 #include "opennurbs_string.h" // dynamic string classes (single and double byte)
59 #include "opennurbs_hash_table.h"
60 #include "opennurbs_file_utilities.h"
61 #include "opennurbs_array.h" // dynamic array templates
62 #include "opennurbs_compress.h"
63 #include "opennurbs_base64.h" // base64 encodeing and decoding
64 #include "opennurbs_color.h" // R G B color
65 #include "opennurbs_linestyle.h" // line pattern, scale, and width
66 #include "opennurbs_point.h" // double precision 2d, 3d, 4d points and 2d, 3d vectors
67 #include "opennurbs_fpoint.h" // float precision 2d, 3d, 4d points and 2d, 3d vectors
68 #include "opennurbs_ipoint.h" // 2d integer point, rectangle and size
69 #include "opennurbs_base32.h" // base32 encodeing and decoding
70 #include "opennurbs_pluginlist.h"
71 #include "opennurbs_bounding_box.h" // simple 3d axis aligned bounding box
72 #include "opennurbs_matrix.h" // general m X n matrix
73 #include "opennurbs_xform.h" // 4 X 4 transformation matrix
74 #include "opennurbs_quaternion.h"
75 #include "opennurbs_workspace.h" // workspace memory allocation
76 #include "opennurbs_plane.h" // simple 3d plane
77 #include "opennurbs_circle.h" // simple 3d circle
78 #include "opennurbs_ellipse.h" // simple 3d ellipse
79 #include "opennurbs_parse.h" // number, length unit, length, angle, point parsing
80 #include "opennurbs_string_value.h" // Robust length, angle and scale value information for UI
81 
82 
83 #include "opennurbs_line.h" // simple line
84 #include "opennurbs_polyline.h" // simple polyline
85 #include "opennurbs_cylinder.h" // simple 3d elliptical cylinder
86 #include "opennurbs_cone.h" // simple 3d right circular cone
87 #include "opennurbs_sphere.h" // simple 3d sphere
88 #include "opennurbs_box.h" // simple 3d box
89 #include "opennurbs_torus.h" // simple 3d torus
90 #include "opennurbs_bezier.h" // simple bezier and polynomial curves and surfaces
91 #include "opennurbs_math.h" // utilities for performing simple calculations
92 #include "opennurbs_intersect.h" // utilities for performing simple intersections
93 #include "opennurbs_optimize.h" // utilities for finding extrema and zeros
94 #include "opennurbs_knot.h" // utilities for working with NURBS knot vectors
95 #include "opennurbs_evaluate_nurbs.h" // utilities for evaluating Beziers and NURBS
96 #include "opennurbs_textlog.h" // text log for dumps, error logs, etc.
97 #include "opennurbs_rtree.h" // ON_RTree spatial search utility.
98 #include "opennurbs_mapchan.h"
99 #include "opennurbs_rendering.h"
100 #include "opennurbs_object.h" // virtual base class for all openNURBS objects
101 #include "opennurbs_model_component.h"
102 #include "opennurbs_archive.h" // binary arcive objects for serialization to file, memory blocks, etc.
103 #include "opennurbs_model_geometry.h"
104 #include "opennurbs_arc.h" // simple 3d circular arc
105 #include "opennurbs_userdata.h" // class for attaching persistent user information to openNURBS objects
106 #include "opennurbs_geometry.h" // virtual base class for geometric objects
107 #include "opennurbs_curve.h" // virtual parametric curve
108 #include "opennurbs_surface.h" // virtual parametric surface
109 #include "opennurbs_viewport.h" // simple renering projection
110 #include "opennurbs_texture_mapping.h" // texture coordinate evaluation
111 #include "opennurbs_texture.h" // texture definition
112 #include "opennurbs_material.h" // simple rendering material
113 #include "opennurbs_layer.h" // layer definition
114 #include "opennurbs_linetype.h" // linetype definition
115 #include "opennurbs_group.h" // group name and index
116 #include "opennurbs_light.h" // light
117 #include "opennurbs_pointgeometry.h" // single point
118 #include "opennurbs_pointcloud.h" // point set
119 #include "opennurbs_curveproxy.h" // proxy curve provides a way to use an existing curve
120 #include "opennurbs_surfaceproxy.h" // proxy surface provides a way to use another surface
121 #include "opennurbs_mesh.h" // render mesh object
122 #include "opennurbs_pointgrid.h" // point grid object
123 #include "opennurbs_linecurve.h" // line as a paramtric curve object
124 #include "opennurbs_arccurve.h" // arc/circle as a paramtric curve object
125 #include "opennurbs_polylinecurve.h" // polyline as a paramtric curve object
126 #include "opennurbs_nurbscurve.h" // NURBS curve
127 #include "opennurbs_polycurve.h" // polycurve (composite curve)
128 #include "opennurbs_curveonsurface.h" // curve on surface (other kind of composite curve)
129 #include "opennurbs_nurbssurface.h" // NURBS surface
130 #include "opennurbs_planesurface.h" // plane surface
131 #include "opennurbs_revsurface.h" // surface of revolution
132 #include "opennurbs_sumsurface.h" // sum surface
133 #include "opennurbs_brep.h" // boundary rep
134 #include "opennurbs_beam.h" // lightweight extrusion object
135 #include "opennurbs_subd.h" // subdivison surface object
136 #include "opennurbs_bitmap.h" // Windows and OpenGL bitmaps
137 #include "opennurbs_instance.h" // instance definitions and references
138 #include "opennurbs_3dm_properties.h"
139 #include "opennurbs_3dm_settings.h"
140 #include "opennurbs_3dm_attributes.h"
141 #include "opennurbs_textglyph.h"
142 #include "opennurbs_textcontext.h"
143 #include "opennurbs_textrun.h"
144 #include "opennurbs_font.h" // font
145 #include "opennurbs_text_style.h"
146 #include "opennurbs_dimensionstyle.h" // dimension style
147 #include "opennurbs_text.h"
148 #include "opennurbs_hatch.h" // hatch geometry definitions
149 #include "opennurbs_hatch.h" // hatch geometry definitions
150 #include "opennurbs_linetype.h" // linetype pattern definitions
151 #include "opennurbs_objref.h" // ON_ObjRef definition
152 #include "opennurbs_offsetsurface.h" // ON_OffsetSurface definition
153 #include "opennurbs_detail.h" // ON_Detail definition
154 #include "opennurbs_lookup.h" // ON_SerialNumberTable
155 #include "opennurbs_object_history.h"
156 #include "opennurbs_annotationbase.h" // Base class for text, leaders and dimensions
157 #include "opennurbs_textobject.h"
158 #include "opennurbs_leader.h"
159 #include "opennurbs_dimension.h"
160 #include "opennurbs_dimensionformat.h" // Formatting dimension measurements to strings
161 
162 #include "opennurbs_photogrammetry.h"
163 
164 #include "opennurbs_extensions.h"
165 
166 #include "opennurbs_freetype.h"
167 
168 
169 #endif
170 
171 #undef OPENNURBS_INC_IN_PROGRESS
172 
173 #endif