Salome HOME
Update copyright
[modules/geom.git] / src / GEOM_I / GEOM_I3DPrimOperations_i.hh
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef _GEOM_I3DPrimOperations_i_HeaderFile
24 #define _GEOM_I3DPrimOperations_i_HeaderFile
25
26 #include "GEOMImpl_Gen.hxx"
27
28 #include <SALOMEconfig.h>
29
30 #include CORBA_SERVER_HEADER(GEOM_Gen)
31 #include "GEOM_IOperations_i.hh"
32 #include "GEOM_Object_i.hh"
33
34 #include "GEOMImpl_I3DPrimOperations.hxx"
35
36 class GEOM_I_EXPORT GEOM_I3DPrimOperations_i :
37     public virtual POA_GEOM::GEOM_I3DPrimOperations,
38     public virtual GEOM_IOperations_i
39 {
40  public:
41   GEOM_I3DPrimOperations_i (PortableServer::POA_ptr thePOA, GEOM::GEOM_Gen_ptr theEngine,
42                             ::GEOMImpl_I3DPrimOperations* theImpl);
43   ~GEOM_I3DPrimOperations_i();
44
45   GEOM::GEOM_Object_ptr MakeBoxDXDYDZ (CORBA::Double theDX,
46                                        CORBA::Double theDY,
47                                        CORBA::Double theDZ);
48
49   GEOM::GEOM_Object_ptr MakeBoxTwoPnt (GEOM::GEOM_Object_ptr thePnt1,
50                                        GEOM::GEOM_Object_ptr thePnt2);
51                                     
52   GEOM::GEOM_Object_ptr MakeFaceHW (CORBA::Double theH,
53                                     CORBA::Double theW,
54                                     CORBA::Short  theOrientation);
55
56   GEOM::GEOM_Object_ptr MakeFaceObjHW (GEOM::GEOM_Object_ptr theObj,
57                                        CORBA::Double theH,
58                                        CORBA::Double theW);
59
60   GEOM::GEOM_Object_ptr MakeDiskPntVecR (GEOM::GEOM_Object_ptr theCenter,
61                                          GEOM::GEOM_Object_ptr theVector,
62                                          double theR);
63
64   GEOM::GEOM_Object_ptr MakeDiskThreePnt (GEOM::GEOM_Object_ptr thePnt1,
65                                           GEOM::GEOM_Object_ptr thePnt2,
66                                           GEOM::GEOM_Object_ptr thePnt3);
67
68   GEOM::GEOM_Object_ptr MakeDiskR (CORBA::Double theR,
69                                    CORBA::Short  theOrientation);
70
71   GEOM::GEOM_Object_ptr MakeCylinderRH (CORBA::Double theR,
72                                         CORBA::Double theH);
73
74   GEOM::GEOM_Object_ptr MakeCylinderPntVecRH (GEOM::GEOM_Object_ptr thePnt,
75                                               GEOM::GEOM_Object_ptr theVec,
76                                               CORBA::Double theR,
77                                               CORBA::Double theH);
78
79   GEOM::GEOM_Object_ptr MakeConeR1R2H (CORBA::Double theR1,
80                                        CORBA::Double theR2,
81                                        CORBA::Double theH);
82
83   GEOM::GEOM_Object_ptr MakeConePntVecR1R2H (GEOM::GEOM_Object_ptr thePnt,
84                                              GEOM::GEOM_Object_ptr theVec,
85                                              CORBA::Double theR1,
86                                              CORBA::Double theR2,
87                                              CORBA::Double theH);
88
89   GEOM::GEOM_Object_ptr MakeSphereR (CORBA::Double theR);
90
91   GEOM::GEOM_Object_ptr MakeSpherePntR (GEOM::GEOM_Object_ptr thePnt,
92                                         CORBA::Double theR);
93
94   GEOM::GEOM_Object_ptr MakeTorusRR (CORBA::Double theRMajor,
95                                      CORBA::Double theRMinor);
96
97   GEOM::GEOM_Object_ptr MakeTorusPntVecRR (GEOM::GEOM_Object_ptr theCenter,
98                                            GEOM::GEOM_Object_ptr theVector,
99                                            CORBA::Double theRMajor,
100                                            CORBA::Double theRMinor);
101
102   GEOM::GEOM_Object_ptr MakePrismVecH (GEOM::GEOM_Object_ptr theBase,
103                                        GEOM::GEOM_Object_ptr theVec,
104                                        CORBA::Double theH);
105
106   GEOM::GEOM_Object_ptr MakePrismVecH2Ways (GEOM::GEOM_Object_ptr theBase,
107                                             GEOM::GEOM_Object_ptr theVec,
108                                             CORBA::Double theH);
109
110   GEOM::GEOM_Object_ptr MakePrismVecHWithScaling (GEOM::GEOM_Object_ptr theBase,
111                                                   GEOM::GEOM_Object_ptr theVec,
112                                                   CORBA::Double theH,
113                                                   CORBA::Double theScaleFactor);
114
115   GEOM::GEOM_Object_ptr MakePrismTwoPnt (GEOM::GEOM_Object_ptr theBase,
116                                          GEOM::GEOM_Object_ptr thePoint1,
117                                          GEOM::GEOM_Object_ptr thePoint2);
118
119   GEOM::GEOM_Object_ptr MakePrismTwoPnt2Ways (GEOM::GEOM_Object_ptr theBase,
120                                               GEOM::GEOM_Object_ptr thePoint1,
121                                               GEOM::GEOM_Object_ptr thePoint2);
122
123   GEOM::GEOM_Object_ptr MakePrismTwoPntWithScaling (GEOM::GEOM_Object_ptr theBase,
124                                                     GEOM::GEOM_Object_ptr thePoint1,
125                                                     GEOM::GEOM_Object_ptr thePoint2,
126                                                     CORBA::Double         theScaleFactor);
127
128   GEOM::GEOM_Object_ptr MakePrismDXDYDZ (GEOM::GEOM_Object_ptr theBase,
129                                          CORBA::Double         theDX,
130                                          CORBA::Double         theDY,
131                                          CORBA::Double         theDZ);
132   GEOM::GEOM_Object_ptr MakePrismDXDYDZ2Ways (GEOM::GEOM_Object_ptr theBase,
133                                               CORBA::Double         theDX,
134                                               CORBA::Double         theDY,
135                                               CORBA::Double         theDZ);
136   GEOM::GEOM_Object_ptr MakePrismDXDYDZWithScaling (GEOM::GEOM_Object_ptr theBase,
137                                                     CORBA::Double         theDX,
138                                                     CORBA::Double         theDY,
139                                                     CORBA::Double         theDZ,
140                                                     CORBA::Double         theScaleFactor);
141
142   GEOM::GEOM_Object_ptr MakePipe (GEOM::GEOM_Object_ptr theBase,
143                                   GEOM::GEOM_Object_ptr thePath);
144
145   GEOM::GEOM_Object_ptr MakeRevolutionAxisAngle (GEOM::GEOM_Object_ptr theBase,
146                                                  GEOM::GEOM_Object_ptr theAxis,
147                                                  CORBA::Double theAngle);
148
149   GEOM::GEOM_Object_ptr MakeRevolutionAxisAngle2Ways (GEOM::GEOM_Object_ptr theBase,
150                                                       GEOM::GEOM_Object_ptr theAxis,
151                                                       CORBA::Double theAngle);
152
153   GEOM::GEOM_Object_ptr MakeFilling(GEOM::GEOM_Object_ptr theShape,
154                                     CORBA::Long theMinDeg, CORBA::Long theMaxDeg,
155                                     CORBA::Double theTol2D, CORBA::Double theTol3D,
156                                     CORBA::Long theNbIter,
157                                     GEOM::filling_oper_method theMethod,
158                                     CORBA::Boolean theApprox);
159
160   GEOM::GEOM_Object_ptr MakeThruSections(const GEOM::ListOfGO& theSeqSections,
161                                          CORBA::Boolean theModeSolid,
162                                          CORBA::Double thePreci,
163                                          CORBA::Boolean theRuled);
164   
165   GEOM::GEOM_Object_ptr MakePipeWithDifferentSections(const GEOM::ListOfGO& theBases,
166                                                       const GEOM::ListOfGO& theLocations,
167                                                       GEOM::GEOM_Object_ptr thePath,
168                                                       CORBA::Boolean theWithContact,
169                                                       CORBA::Boolean theWithCorrections);
170
171   GEOM::GEOM_Object_ptr MakePipeWithShellSections(const GEOM::ListOfGO& theBases,
172                                                   const GEOM::ListOfGO& theSubBases,
173                                                   const GEOM::ListOfGO& theLocations,
174                                                   GEOM::GEOM_Object_ptr thePath,
175                                                   CORBA::Boolean theWithContact,
176                                                   CORBA::Boolean theWithCorrections);
177
178   GEOM::GEOM_Object_ptr MakePipeShellsWithoutPath(const GEOM::ListOfGO& theBases,
179                                                   const GEOM::ListOfGO& theLocations);
180
181   GEOM::GEOM_Object_ptr MakePipeBiNormalAlongVector (GEOM::GEOM_Object_ptr theBase,
182                                                      GEOM::GEOM_Object_ptr thePath,
183                                                      GEOM::GEOM_Object_ptr theVec);
184
185   ::GEOMImpl_I3DPrimOperations* GetOperations()
186   { return (::GEOMImpl_I3DPrimOperations*)GetImpl(); }
187 };
188
189 #endif