1 // Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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.
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.
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
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #ifndef _GEOMImpl_I3DPrimOperations_HXX_
22 #define _GEOMImpl_I3DPrimOperations_HXX_
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>
31 class GEOMImpl_I3DPrimOperations : public GEOM_IOperations {
33 Standard_EXPORT GEOMImpl_I3DPrimOperations(GEOM_Engine* theEngine, int theDocID);
34 Standard_EXPORT ~GEOMImpl_I3DPrimOperations();
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);
40 Standard_EXPORT Handle(GEOM_Object) MakeCylinderRH (double theR, double theH);
41 Standard_EXPORT Handle(GEOM_Object) MakeCylinderPntVecRH (Handle(GEOM_Object) thePnt,
42 Handle(GEOM_Object) theVec,
43 double theR, double theH);
45 Standard_EXPORT Handle(GEOM_Object) MakeConeR1R2H (double theR1, double theR2, double theH);
46 Standard_EXPORT Handle(GEOM_Object) MakeConePntVecR1R2H (Handle(GEOM_Object) thePnt,
47 Handle(GEOM_Object) theVec,
48 double theR1, double theR2, double theH);
50 Standard_EXPORT Handle(GEOM_Object) MakeSphereR (double theR);
51 Standard_EXPORT Handle(GEOM_Object) MakeSpherePntR (Handle(GEOM_Object) thePnt, double theR);
53 Standard_EXPORT Handle(GEOM_Object) MakeTorusRR (double theRMajor, double theRMinor);
55 Standard_EXPORT Handle(GEOM_Object) MakeTorusPntVecRR (Handle(GEOM_Object) thePnt,
56 Handle(GEOM_Object) theVec,
57 double theRMajor, double theRMinor);
59 Standard_EXPORT Handle(GEOM_Object) MakePrismVecH (Handle(GEOM_Object) theBase,
60 Handle(GEOM_Object) theVec, double theH);
62 Standard_EXPORT Handle(GEOM_Object) MakePrismTwoPnt (Handle(GEOM_Object) theBase,
63 Handle(GEOM_Object) thePoint1,
64 Handle(GEOM_Object) thePoint2);
66 Standard_EXPORT Handle(GEOM_Object) MakePipe (Handle(GEOM_Object) theBase,
67 Handle(GEOM_Object) thePath);
69 Standard_EXPORT Handle(GEOM_Object) MakeRevolutionAxisAngle (Handle(GEOM_Object) theBase,
70 Handle(GEOM_Object) theAxis,
73 Standard_EXPORT Handle(GEOM_Object) MakeSolidShell (Handle(GEOM_Object) theShell);
75 Standard_EXPORT Handle(GEOM_Object) MakeFilling (Handle(GEOM_Object) theShape, int theMinDeg, int theMaxDeg, double theTol2D, double theTol3D, int theNbIter);
77 Standard_EXPORT Handle(GEOM_Object) MakeThruSections(const Handle(TColStd_HSequenceOfTransient)& theSeqSections,
82 Standard_EXPORT Handle(GEOM_Object) MakePipeWithDifferentSections(
83 const Handle(TColStd_HSequenceOfTransient)& theBases,
84 const Handle(TColStd_HSequenceOfTransient)& theLocations,
85 const Handle(GEOM_Object)& thePath,
87 bool theWithCorrections);