geom/src/GEOMImpl/GEOMImpl_IAdvancedOperations.hxx

115 lines
6.0 KiB
C++
Raw Normal View History

2011-06-06 13:23:11 +06:00
// Copyright (C) 2007-2011 CEA/DEN, EDF R&D, OPEN CASCADE
2010-05-14 21:15:28 +06:00
//
2011-06-06 13:23:11 +06:00
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License.
2010-05-14 21:15:28 +06:00
//
2011-06-06 13:23:11 +06:00
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
// Lesser General Public License for more details.
2010-05-14 21:15:28 +06:00
//
2011-06-06 13:23:11 +06:00
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
2010-05-14 21:15:28 +06:00
//
2011-06-06 13:23:11 +06:00
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2010-05-14 21:15:28 +06:00
//
// File : GEOMImpl_IAdvancedOperations.hxx
// Author : Vadim SANDLER, Open CASCADE S.A.S. (vadim.sandler@opencascade.com)
2010-11-25 17:31:41 +05:00
2010-05-14 21:15:28 +06:00
#ifndef _GEOMImpl_IAdvancedOperations_HXX_
#define _GEOMImpl_IAdvancedOperations_HXX_
#include <Utils_SALOME_Exception.hxx>
#include "GEOM_IOperations.hxx"
#include "GEOM_Engine.hxx"
#include "GEOM_Object.hxx"
class GEOMImpl_IBasicOperations;
class GEOMImpl_IBooleanOperations;
class GEOMImpl_IShapesOperations;
class GEOMImpl_ITransformOperations;
class GEOMImpl_IBlocksOperations;
class GEOMImpl_I3DPrimOperations;
class GEOMImpl_ILocalOperations;
2010-11-25 17:31:41 +05:00
class GEOMImpl_IHealingOperations;
2010-05-14 21:15:28 +06:00
class GEOMImpl_IAdvancedOperations: public GEOM_IOperations {
private:
bool MakePipeTShapePartition(Handle(GEOM_Object) theShape,
2010-11-25 17:31:41 +05:00
double theR1, double theW1, double theL1,
double theR2, double theW2, double theL2,
double theH = 0, double theW = 0,
double theRF = 0, bool isNormal = true);
2010-05-14 21:15:28 +06:00
bool MakePipeTShapeMirrorAndGlue(Handle(GEOM_Object) theShape,
2010-11-25 17:31:41 +05:00
double theR1, double theW1, double theL1,
double theR2, double theW2, double theL2);
2010-05-14 21:15:28 +06:00
bool MakeGroups(Handle(GEOM_Object) theShape, int shapType,
2010-11-25 17:31:41 +05:00
double theR1, double theW1, double theL1,
double theR2, double theW2, double theL2,
Handle(TColStd_HSequenceOfTransient) theSeq,
gp_Trsf aTrsf);
2010-05-14 21:15:28 +06:00
gp_Trsf GetPositionTrsf(double theL1, double theL2,
2010-11-25 17:31:41 +05:00
Handle(GEOM_Object) P1 = 0,
Handle(GEOM_Object) P2 = 0,
Handle(GEOM_Object) P3 = 0);
2010-05-14 21:15:28 +06:00
bool CheckCompatiblePosition(double& theL1, double& theL2,
2010-11-25 17:31:41 +05:00
Handle(GEOM_Object) theP1,
Handle(GEOM_Object) theP2,
Handle(GEOM_Object) theP3,
double theTolerance);
2010-05-14 21:15:28 +06:00
private:
GEOMImpl_IBasicOperations* myBasicOperations;
GEOMImpl_IBooleanOperations* myBooleanOperations;
GEOMImpl_IShapesOperations* myShapesOperations;
GEOMImpl_ITransformOperations* myTransformOperations;
GEOMImpl_IBlocksOperations* myBlocksOperations;
GEOMImpl_I3DPrimOperations* my3DPrimOperations;
GEOMImpl_ILocalOperations* myLocalOperations;
2010-11-25 17:31:41 +05:00
GEOMImpl_IHealingOperations* myHealingOperations;
2010-05-14 21:15:28 +06:00
public:
Standard_EXPORT GEOMImpl_IAdvancedOperations(GEOM_Engine* theEngine, int theDocID);
Standard_EXPORT ~GEOMImpl_IAdvancedOperations();
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShape(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
bool theHexMesh = true);
2010-05-14 21:15:28 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShapeWithPosition(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
bool theHexMesh = true,
Handle(GEOM_Object) P1 = 0,
Handle(GEOM_Object) P2 = 0,
Handle(GEOM_Object) P3 = 0);
2010-05-14 21:15:28 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShapeChamfer(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
double theH, double theW,
bool theHexMesh = true);
2010-05-14 21:15:28 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShapeChamferWithPosition(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
double theH, double theW,
bool theHexMesh = true,
Handle(GEOM_Object) P1 = 0,
Handle(GEOM_Object) P2 = 0,
Handle(GEOM_Object) P3 = 0);
2010-05-14 21:15:28 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShapeFillet(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
double theRF, bool theHexMesh = true);
2010-05-14 21:15:28 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
MakePipeTShapeFilletWithPosition(double theR1, double theW1, double theL1,
2010-11-25 17:31:41 +05:00
double theR2, double theW2, double theL2,
double theRF, bool theHexMesh = true,
Handle(GEOM_Object) P1 = 0,
Handle(GEOM_Object) P2 = 0,
Handle(GEOM_Object) P3 = 0);
2010-05-14 21:15:28 +06:00
/*@@ insert new functions before this line @@ do not remove this line @@*/
};
#endif