2014-02-18 12:44:41 +06:00
|
|
|
// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
|
|
|
|
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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
|
2014-02-18 12:44:41 +06:00
|
|
|
// version 2.1 of the License, or (at your option) any later version.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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.
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +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
|
2009-02-13 17:16:39 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
|
2005-12-05 21:23:52 +05:00
|
|
|
//
|
2012-08-09 13:58:02 +06:00
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
#ifndef _GEOMImpl_IBooleanOperations_HXX_
|
|
|
|
#define _GEOMImpl_IBooleanOperations_HXX_
|
|
|
|
|
|
|
|
#include "GEOM_IOperations.hxx"
|
|
|
|
|
|
|
|
#include "list"
|
|
|
|
|
|
|
|
class GEOM_Engine;
|
|
|
|
class Handle(GEOM_Object);
|
|
|
|
class Handle(TColStd_HArray1OfInteger);
|
|
|
|
|
|
|
|
class GEOMImpl_IBooleanOperations : public GEOM_IOperations {
|
|
|
|
public:
|
2005-08-11 10:43:57 +06:00
|
|
|
Standard_EXPORT GEOMImpl_IBooleanOperations(GEOM_Engine* theEngine, int theDocID);
|
|
|
|
Standard_EXPORT ~GEOMImpl_IBooleanOperations();
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2013-10-16 17:22:29 +06:00
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeBoolean
|
|
|
|
(Handle(GEOM_Object) theShape1,
|
|
|
|
Handle(GEOM_Object) theShape2,
|
|
|
|
const Standard_Integer theOp,
|
|
|
|
const Standard_Boolean IsCheckSelfInte);
|
2008-03-07 12:45:34 +05:00
|
|
|
|
2014-03-27 13:59:05 +06:00
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeFuse
|
|
|
|
(Handle(GEOM_Object) theShape1,
|
|
|
|
Handle(GEOM_Object) theShape2,
|
|
|
|
const bool IsCheckSelfInte,
|
|
|
|
const bool IsRmExtraEdges);
|
|
|
|
|
2013-05-23 12:42:48 +06:00
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeFuseList
|
2013-10-16 17:22:29 +06:00
|
|
|
(const Handle(TColStd_HSequenceOfTransient)& theShapes,
|
2014-03-27 13:59:05 +06:00
|
|
|
const bool IsCheckSelfInte,
|
|
|
|
const bool IsRmExtraEdges);
|
2013-05-23 12:42:48 +06:00
|
|
|
|
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeCommonList
|
2013-10-16 17:22:29 +06:00
|
|
|
(const Handle(TColStd_HSequenceOfTransient)& theShapes,
|
|
|
|
const Standard_Boolean IsCheckSelfInte);
|
2013-05-23 12:42:48 +06:00
|
|
|
|
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeCutList
|
|
|
|
(Handle(GEOM_Object) theMainShape,
|
2013-10-16 17:22:29 +06:00
|
|
|
const Handle(TColStd_HSequenceOfTransient)& theShapes,
|
|
|
|
const Standard_Boolean IsCheckSelfInte);
|
2013-05-23 12:42:48 +06:00
|
|
|
|
2008-03-07 12:45:34 +05:00
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakePartition
|
|
|
|
(const Handle(TColStd_HSequenceOfTransient)& theShapes,
|
|
|
|
const Handle(TColStd_HSequenceOfTransient)& theTools,
|
|
|
|
const Handle(TColStd_HSequenceOfTransient)& theKeepInside,
|
|
|
|
const Handle(TColStd_HSequenceOfTransient)& theRemoveInside,
|
|
|
|
const Standard_Integer theLimit,
|
|
|
|
const Standard_Boolean theRemoveWebs,
|
|
|
|
const Handle(TColStd_HArray1OfInteger)& theMaterials,
|
2012-08-09 13:58:02 +06:00
|
|
|
const Standard_Integer theKeepNonlimitShapes,
|
2013-11-26 13:06:56 +06:00
|
|
|
const Standard_Boolean thePerformSelfIntersections,
|
|
|
|
const Standard_Boolean IsCheckSelfInte);
|
2004-12-01 15:39:14 +05:00
|
|
|
|
2013-11-26 13:06:56 +06:00
|
|
|
Standard_EXPORT Handle(GEOM_Object) MakeHalfPartition (Handle(GEOM_Object) theShape,
|
2014-02-26 15:13:55 +06:00
|
|
|
Handle(GEOM_Object) thePlane);
|
2013-05-23 12:42:48 +06:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
Handle(TColStd_HSequenceOfTransient) getShapeFunctions
|
|
|
|
(const Handle(TColStd_HSequenceOfTransient)& theObjects,
|
|
|
|
TCollection_AsciiString &theDescription);
|
|
|
|
|
2004-12-01 15:39:14 +05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|