Nektar++
OpenCascade.h
Go to the documentation of this file.
1 ////////////////////////////////////////////////////////////////////////////////
2 //
3 // File: Opencascade.h
4 //
5 // For more information, please see: http://www.nektar.info/
6 //
7 // The MIT License
8 //
9 // Copyright (c) 2006 Division of Applied Mathematics, Brown University (USA),
10 // Department of Aeronautics, Imperial College London (UK), and Scientific
11 // Computing and Imaging Institute, University of Utah (USA).
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining a
14 // copy of this software and associated documentation files (the "Software"),
15 // to deal in the Software without restriction, including without limitation
16 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
17 // and/or sell copies of the Software, and to permit persons to whom the
18 // Software is furnished to do so, subject to the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be included
21 // in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
24 // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
26 // THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
29 // DEALINGS IN THE SOFTWARE.
30 //
31 // Description: occ headers.
32 //
33 ////////////////////////////////////////////////////////////////////////////////
34 
35 #ifndef NEKMESHUTILS_CADSYSTEM_OCC
36 #define NEKMESHUTILS_CADSYSTEM_OCC
37 
38 /// This is a list of OpenCascade headers required for use with nektar
39 
40 /// IO classes
41 #include <STEPCAFControl_Reader.hxx>
42 #include <StepRepr_RepresentationItem.hxx>
43 #include <TDocStd_Document.hxx>
44 #include <XSControl_WorkSession.hxx>
45 #include <XSControl_TransferReader.hxx>
46 #include <XCAFDoc_DocumentTool.hxx>
47 #include <Storage.hxx>
48 
49 /// STL classes
50 #include <BRepMesh_IncrementalMesh.hxx>
51 
52 
53 /// Shape Analysis / exploration classes
54 #include <BRepTopAdaptor_FClass2d.hxx>
55 #include <ShapeAnalysis_Surface.hxx>
56 #include <BRepTools_WireExplorer.hxx>
57 #include <TopExp.hxx>
58 #include <BRepTools.hxx>
59 #include <BRep_Tool.hxx>
60 #include <TopExp_Explorer.hxx>
61 #include <GeomAdaptor_HSurface.hxx>
62 #include <BRepAdaptor_Curve.hxx>
63 #include <GProp_GProps.hxx>
64 #include <BRepGProp.hxx>
65 #include <GeomLProp_CLProps.hxx>
66 #include <GeomLProp_SLProps.hxx>
67 #include <ShapeAnalysis_Curve.hxx>
68 #include <BRepBndLib.hxx>
69 #include <BRepExtrema_DistShapeShape.hxx>
70 #include <GCPnts_AbscissaPoint.hxx>
71 
72 /// Shape fixing classes
73 #include <ShapeFix_Face.hxx>
74 
75 /// Shape Building classes
76 #include <BRepBuilderAPI_MakeEdge.hxx>
77 #include <BRepBuilderAPI_MakeWire.hxx>
78 #include <BRepBuilderAPI_MakeFace.hxx>
79 #include <BRepBuilderAPI_MakeVertex.hxx>
80 #include <Geom_BSplineCurve.hxx>
81 #include <GeomAPI_PointsToBSpline.hxx>
82 #include <BRepBuilderAPI_Sewing.hxx>
83 #include <Geom_TrimmedCurve.hxx>
84 
85 /// Data structure classes
86 #include <TopTools_IndexedMapOfShape.hxx>
87 #include <TopTools_DataMapOfShapeShape.hxx>
88 #include <TColgp_Array1OfPnt.hxx>
89 #include <Transfer_Binder.hxx>
90 #include <TransferBRep.hxx>
91 #include <Transfer_TransientProcess.hxx>
92 #include <Interface_InterfaceModel.hxx>
93 #include <TCollection_HAsciiString.hxx>
94 
95 /// CORE SHAPE classes
96 #include <TopoDS_Shape.hxx>
97 #include <TopoDS_Shell.hxx>
98 #include <TopoDS_Face.hxx>
99 #include <TopoDS_Wire.hxx>
100 #include <TopoDS_Edge.hxx>
101 #include <TopoDS.hxx>
102 
103 /// GP clasases
104 #include <gp_Pnt.hxx>
105 #include <gp_Ax1.hxx>
106 #include <gp_Pnt2d.hxx>
107 #include <gp_Trsf.hxx>
108 
109 #include <Geom_BSplineCurve.hxx>
110 #include <Geom_BezierCurve.hxx>
111 #include <Geom_Circle.hxx>
112 #include <Geom_Ellipse.hxx>
113 #include <gp_Circ.hxx>
114 #include <gp_Elips.hxx>
115 
116 #endif