Salome HOME
Heal invalid shape after scaling, because different scaling along axes can produce...
[modules/geom.git] / src / GEOMImpl / GEOMImpl_I3DPrimOperations.hxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20
21 #ifndef _GEOMImpl_I3DPrimOperations_HXX_
22 #define _GEOMImpl_I3DPrimOperations_HXX_
23
24 #include "Utils_SALOME_Exception.hxx"
25 #include "GEOM_IOperations.hxx"
26 #include "GEOM_Engine.hxx"
27 #include "GEOM_Object.hxx"
28 #include <TDocStd_Document.hxx>
29 #include <TColStd_HSequenceOfTransient.hxx>
30
31 class GEOMImpl_I3DPrimOperations : public GEOM_IOperations {
32  public:
33   Standard_EXPORT GEOMImpl_I3DPrimOperations(GEOM_Engine* theEngine, int theDocID);
34   Standard_EXPORT ~GEOMImpl_I3DPrimOperations();
35
36   Standard_EXPORT Handle(GEOM_Object) MakeBoxDXDYDZ (double theDX, double theDY, double theDZ);
37   Standard_EXPORT Handle(GEOM_Object) MakeBoxTwoPnt (Handle(GEOM_Object) thePnt1,
38                                                      Handle(GEOM_Object) thePnt2);
39   Standard_EXPORT Handle(GEOM_Object) MakeFaceHW (double theH, double theW, int theOrientation);
40   Standard_EXPORT Handle(GEOM_Object) MakeFaceObjHW (Handle(GEOM_Object) theObj,
41                                                      double theH, double theW);
42   Standard_EXPORT Handle(GEOM_Object) MakeDiskThreePnt (Handle(GEOM_Object) thePnt1,
43                                                         Handle(GEOM_Object) thePnt2,
44                                                         Handle(GEOM_Object) thePnt3);
45   Standard_EXPORT Handle(GEOM_Object) MakeDiskPntVecR (Handle(GEOM_Object) thePnt1,
46                                                        Handle(GEOM_Object) theVec,
47                                                        double theR);
48   Standard_EXPORT Handle(GEOM_Object) MakeDiskR (double theR, int theOrientation);
49   Standard_EXPORT Handle(GEOM_Object) MakeCylinderRH       (double theR, double theH);
50   Standard_EXPORT Handle(GEOM_Object) MakeCylinderPntVecRH (Handle(GEOM_Object) thePnt,
51                                             Handle(GEOM_Object) theVec,
52                                             double theR, double theH);
53
54   Standard_EXPORT Handle(GEOM_Object) MakeConeR1R2H       (double theR1, double theR2, double theH);
55   Standard_EXPORT Handle(GEOM_Object) MakeConePntVecR1R2H (Handle(GEOM_Object) thePnt,
56                                            Handle(GEOM_Object) theVec,
57                                            double theR1, double theR2, double theH);
58
59   Standard_EXPORT Handle(GEOM_Object) MakeSphereR    (double theR);
60   Standard_EXPORT Handle(GEOM_Object) MakeSpherePntR (Handle(GEOM_Object) thePnt, double theR);
61
62   Standard_EXPORT Handle(GEOM_Object) MakeTorusRR (double theRMajor, double theRMinor);
63
64   Standard_EXPORT Handle(GEOM_Object) MakeTorusPntVecRR (Handle(GEOM_Object) thePnt,
65                                          Handle(GEOM_Object) theVec,
66                                          double theRMajor, double theRMinor);
67
68   Standard_EXPORT Handle(GEOM_Object) MakePrismVecH (Handle(GEOM_Object) theBase,
69                                      Handle(GEOM_Object) theVec, double theH);
70
71   Standard_EXPORT Handle(GEOM_Object) MakePrismVecH2Ways (Handle(GEOM_Object) theBase,
72                                               Handle(GEOM_Object) theVec, double theH);
73
74   Standard_EXPORT Handle(GEOM_Object) MakePrismTwoPnt (Handle(GEOM_Object) theBase,
75                                        Handle(GEOM_Object) thePoint1,
76                                        Handle(GEOM_Object) thePoint2);
77
78   Standard_EXPORT Handle(GEOM_Object) MakePrismTwoPnt2Ways (Handle(GEOM_Object) theBase,
79                                        Handle(GEOM_Object) thePoint1,
80                                        Handle(GEOM_Object) thePoint2);
81
82   Standard_EXPORT Handle(GEOM_Object) MakePrismDXDYDZ (Handle(GEOM_Object) theBase,
83                                      double theDX, double theDY, double theDZ);
84
85   Standard_EXPORT Handle(GEOM_Object) MakePrismDXDYDZ2Ways (Handle(GEOM_Object) theBase,
86                                      double theDX, double theDY, double theDZ);
87
88   Standard_EXPORT Handle(GEOM_Object) MakePipe (Handle(GEOM_Object) theBase,
89                                 Handle(GEOM_Object) thePath);
90
91   Standard_EXPORT Handle(GEOM_Object) MakeRevolutionAxisAngle (Handle(GEOM_Object) theBase,
92                                                Handle(GEOM_Object) theAxis,
93                                                double theAngle);
94
95   Standard_EXPORT Handle(GEOM_Object) MakeRevolutionAxisAngle2Ways (Handle(GEOM_Object) theBase,
96                                                                     Handle(GEOM_Object) theAxis,
97                                                                     double theAngle);
98
99   Standard_EXPORT Handle(GEOM_Object) MakeSolidShell (Handle(GEOM_Object) theShell);
100
101   Standard_EXPORT Handle(GEOM_Object) MakeFilling (Handle(GEOM_Object) theShape, int theMinDeg, int theMaxDeg, double theTol2D, double theTol3D, int theNbIter, bool isApprox);
102
103   Standard_EXPORT Handle(GEOM_Object) MakeThruSections(const Handle(TColStd_HSequenceOfTransient)& theSeqSections,
104                                                        bool theModeSolid,
105                                                        double thePreci,
106                                                        bool theRuled);
107
108   Standard_EXPORT Handle(GEOM_Object) MakePipeWithDifferentSections(
109                 const Handle(TColStd_HSequenceOfTransient)& theBases,
110                 const Handle(TColStd_HSequenceOfTransient)& theLocations,
111                 const Handle(GEOM_Object)& thePath,
112                 bool theWithContact,
113                 bool theWithCorrections);
114
115   Standard_EXPORT Handle(GEOM_Object) MakePipeWithShellSections(
116                 const Handle(TColStd_HSequenceOfTransient)& theBases,
117                 const Handle(TColStd_HSequenceOfTransient)& theSubBases,
118                 const Handle(TColStd_HSequenceOfTransient)& theLocations,
119                 const Handle(GEOM_Object)& thePath,
120                 bool theWithContact,
121                 bool theWithCorrections);
122
123   Standard_EXPORT Handle(GEOM_Object) MakePipeShellsWithoutPath(
124                 const Handle(TColStd_HSequenceOfTransient)& theBases,
125                 const Handle(TColStd_HSequenceOfTransient)& theLocations);
126
127   Standard_EXPORT Handle(GEOM_Object) MakePipeBiNormalAlongVector (Handle(GEOM_Object) theBase,
128                                                                    Handle(GEOM_Object) thePath,
129                                                                    Handle(GEOM_Object) theVec);
130
131 };
132
133 #endif