geom/src/GEOMImpl/GEOMImpl_IShapesOperations.hxx

509 lines
25 KiB
C++
Raw Normal View History

2013-04-01 18:25:01 +06:00
// Copyright (C) 2007-2013 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
// version 2.1 of the License.
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
//=============================================================================
// File : GEOMImpl_IShapesOperations.hxx
2012-08-09 13:58:02 +06:00
// Created :
// Author : modified by Lioka RAZAFINDRAZAKA (CEA) 22/06/2007
// Project : SALOME
//=============================================================================
2012-08-09 13:58:02 +06:00
2004-12-01 15:39:14 +05:00
#ifndef _GEOMImpl_IShapesOperations_HXX_
#define _GEOMImpl_IShapesOperations_HXX_
#include "GEOM_IOperations.hxx"
#include "GEOMAlgo_State.hxx"
2012-08-09 13:58:02 +06:00
#include <TopoDS_Shape.hxx>
2004-12-01 15:39:14 +05:00
#include <TopTools_ListOfShape.hxx>
2012-08-09 13:58:02 +06:00
#include <NCollection_DataMap.hxx>
2004-12-01 15:39:14 +05:00
#include <TColStd_HSequenceOfTransient.hxx>
2005-01-20 11:24:17 +05:00
#include <TColStd_HSequenceOfInteger.hxx>
2004-12-01 15:39:14 +05:00
#include <Handle_Geom_Surface.hxx>
2004-12-01 15:39:14 +05:00
#include <gp_Pnt.hxx>
2012-08-09 13:58:02 +06:00
#include <list>
#include <functional>
2004-12-01 15:39:14 +05:00
class GEOM_Engine;
class Handle(GEOM_Object);
class Handle(TColStd_HArray1OfInteger);
class GEOMImpl_IShapesOperations : public GEOM_IOperations
{
2004-12-01 15:39:14 +05:00
public:
2005-08-11 10:43:57 +06:00
Standard_EXPORT GEOMImpl_IShapesOperations(GEOM_Engine* theEngine, int theDocID);
Standard_EXPORT ~GEOMImpl_IShapesOperations();
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) MakeEdge (Handle(GEOM_Object) thePoint1,
2012-08-09 13:58:02 +06:00
Handle(GEOM_Object) thePoint2);
Standard_EXPORT Handle(GEOM_Object) MakeEdgeOnCurveByLength (Handle(GEOM_Object) theCurve,
const Standard_Real theLength,
Handle(GEOM_Object) theStartPoint);
Standard_EXPORT Handle(GEOM_Object) MakeEdgeWire (Handle(GEOM_Object) theWire,
const Standard_Real theLinearTolerance,
const Standard_Real theAngularTolerance);
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(GEOM_Object) MakeWire (std::list<Handle(GEOM_Object)> theEdgesAndWires,
const Standard_Real theTolerance);
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) MakeFace (Handle(GEOM_Object) theWire, const bool isPlanarWanted);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
Standard_EXPORT Handle(GEOM_Object) MakeFaceWires (std::list<Handle(GEOM_Object)> theWires,
2012-08-09 13:58:02 +06:00
const bool isPlanarWanted);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
Standard_EXPORT Handle(GEOM_Object) MakeShell (std::list<Handle(GEOM_Object)> theShapes);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
Standard_EXPORT Handle(GEOM_Object) MakeSolidShells (std::list<Handle(GEOM_Object)> theShells);
2004-12-01 15:39:14 +05:00
2009-02-13 17:16:39 +05:00
Standard_EXPORT Handle(GEOM_Object) MakeCompound (std::list<Handle(GEOM_Object)> theShapes);
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) MakeGlueFaces (Handle(GEOM_Object) theShape,
2012-08-09 13:58:02 +06:00
const Standard_Real theTolerance,
const Standard_Boolean doKeepNonSolids);
2012-08-09 13:58:02 +06:00
//Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetGlueFaces (Handle(GEOM_Object) theShape,
// const Standard_Real theTolerance);
Standard_EXPORT Handle(GEOM_Object) MakeGlueFacesByList (Handle(GEOM_Object) theShape,
2012-08-09 13:58:02 +06:00
const Standard_Real theTolerance,
std::list<Handle(GEOM_Object)> theFaces,
const Standard_Boolean doKeepNonSolids,
const Standard_Boolean doGlueAllEdges);
Standard_EXPORT Handle(GEOM_Object) MakeGlueEdges (Handle(GEOM_Object) theShape,
const Standard_Real theTolerance);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetGlueShapes (Handle(GEOM_Object) theShape,
const Standard_Real theTolerance,
const TopAbs_ShapeEnum theType);
Standard_EXPORT Handle(GEOM_Object) MakeGlueEdgesByList (Handle(GEOM_Object) theShape,
const Standard_Real theTolerance,
std::list<Handle(GEOM_Object)> theEdges);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient) GetExistingSubObjects
(Handle(GEOM_Object) theShape,
const Standard_Boolean theGroupsOnly);
enum ExplodeType {
EXPLODE_OLD_INCLUDE_MAIN,
EXPLODE_NEW_INCLUDE_MAIN,
EXPLODE_NEW_EXCLUDE_MAIN
};
Standard_EXPORT Handle(TColStd_HSequenceOfTransient) MakeExplode
(Handle(GEOM_Object) theShape,
const Standard_Integer theShapeType,
const Standard_Boolean isSorted,
const ExplodeType theExplodeType = EXPLODE_NEW_INCLUDE_MAIN);
Standard_EXPORT Handle(TColStd_HSequenceOfInteger) SubShapeAllIDs
(Handle(GEOM_Object) theShape,
const Standard_Integer theShapeType,
const Standard_Boolean isSorted,
const ExplodeType theExplodeType = EXPLODE_NEW_INCLUDE_MAIN);
2005-01-20 11:24:17 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) GetSubShape (Handle(GEOM_Object) theMainShape,
const Standard_Integer theID);
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient) MakeSubShapes
(Handle(GEOM_Object) theMainShape,
Handle(TColStd_HArray1OfInteger) theIndices);
Standard_EXPORT Standard_Integer GetSubShapeIndex (Handle(GEOM_Object) theMainShape,
Handle(GEOM_Object) theSubShape);
2013-02-12 17:35:16 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfInteger) GetSubShapesIndices (Handle(GEOM_Object) theMainShape,
std::list<Handle(GEOM_Object)> theSubShapes);
Standard_EXPORT Standard_Integer GetTopologyIndex (Handle(GEOM_Object) theMainShape,
Handle(GEOM_Object) theSubShape);
Standard_EXPORT TCollection_AsciiString GetShapeTypeString (Handle(GEOM_Object) theShape);
2004-12-01 15:39:14 +05:00
2012-08-09 13:58:02 +06:00
Standard_EXPORT Standard_Integer NumberOfSubShapes (Handle(GEOM_Object) theShape,
const Standard_Integer theShapeType);
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) ReverseShape(Handle(GEOM_Object) theShapes);
2004-12-01 15:39:14 +05:00
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfInteger) GetFreeFacesIDs (Handle(GEOM_Object) theShape);
2005-01-20 11:24:17 +05:00
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetSharedShapes (Handle(GEOM_Object) theShape1,
Handle(GEOM_Object) theShape2,
const Standard_Integer theShapeType);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetSharedShapes (std::list<Handle(GEOM_Object)> theShapes,
const Standard_Integer theShapeType);
2005-01-20 11:24:17 +05:00
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnPlane (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAx1,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnPlaneWithLocation (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAx1,
const Handle(GEOM_Object)& thePnt,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnCylinder (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAxis,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnCylinderWithLocation (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAxis,
const Handle(GEOM_Object)& thePnt,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnSphere (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theCenter,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnPlaneIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAx1,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnPlaneWithLocationIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAx1,
const Handle(GEOM_Object)& thePnt,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnCylinderIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAxis,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnCylinderWithLocationIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theAxis,
const Handle(GEOM_Object)& thePnt,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnSphereIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theCenter,
const Standard_Real theRadius,
const GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find sub-shapes complying with given status about quadrangle
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
* \param theTopLeftPoint - top left quadrangle corner
* \param theTopRigthPoint - top right quadrangle corner
* \param theBottomLeftPoint - bottom left quadrangle corner
* \param theBottomRigthPoint - bottom right quadrangle corner
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnQuadrangle (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theTopLeftPoint,
const Handle(GEOM_Object)& theTopRigthPoint,
const Handle(GEOM_Object)& theBottomLeftPoint,
const Handle(GEOM_Object)& theBottomRigthPoint,
const GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about quadrangle
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
* \param theTopLeftPoint - top left quadrangle corner
* \param theTopRigthPoint - top right quadrangle corner
* \param theBottomLeftPoint - bottom left quadrangle corner
* \param theBottomRigthPoint - bottom right quadrangle corner
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnQuadrangleIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theTopLeftPoint,
const Handle(GEOM_Object)& theTopRigthPoint,
const Handle(GEOM_Object)& theBottomLeftPoint,
const Handle(GEOM_Object)& theBottomRigthPoint,
const GEOMAlgo_State theState);
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) GetShapesOnCylinderOld (Handle(GEOM_Object) theShape,
2012-08-09 13:58:02 +06:00
const Standard_Integer theShapeType,
Handle(GEOM_Object) theAxis,
const Standard_Real theRadius);
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) GetShapesOnSphereOld (Handle(GEOM_Object) theShape,
2012-08-09 13:58:02 +06:00
const Standard_Integer theShapeType,
Handle(GEOM_Object) theCenter,
const Standard_Real theRadius);
2005-01-20 11:24:17 +05:00
void GetShapeProperties(const TopoDS_Shape aShape, Standard_Real propertiesArray[], gp_Pnt & aPnt);
2005-08-11 10:43:57 +06:00
Standard_EXPORT Handle(GEOM_Object) GetInPlace (Handle(GEOM_Object) theShapeWhere,
Handle(GEOM_Object) theShapeWhat);
2012-08-09 13:58:02 +06:00
Standard_EXPORT Handle(GEOM_Object) GetInPlaceOld (Handle(GEOM_Object) theShapeWhere,
Handle(GEOM_Object) theShapeWhat);
Standard_EXPORT Handle(GEOM_Object) GetInPlaceByHistory (Handle(GEOM_Object) theShapeWhere,
Handle(GEOM_Object) theShapeWhat);
/*!
* \brief Searches a shape equal to theWhat in the context of theWhere
* \param theShapeWhere - a context shap
* \param theShapeWhat - a sample shape
* \retval Handle(GEOM_Object) - found shape
*/
Standard_EXPORT Handle(GEOM_Object) GetSame(const Handle(GEOM_Object)& theShapeWhere,
const Handle(GEOM_Object)& theShapeWhat);
/*!
2012-08-09 13:58:02 +06:00
* \brief Searches a shape equal to theWhat in the context of theWhere
* \param theShapeWhere - a context shap
* \param theShapeWhat - a sample shape
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Standard_EXPORT Handle(TColStd_HSequenceOfInteger) GetSameIDs(const Handle(GEOM_Object)& theShapeWhere,
const Handle(GEOM_Object)& theShapeWhat);
/*!
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theBox - the box to check state of sub-shapes against
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnBoxIDs(const Handle(GEOM_Object)& theBox,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find sub-shapes complying with given status about surface
* \param theBox - the box to check state of sub-shapes against
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
* \param theState - required state
2009-02-13 17:16:39 +05:00
* \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
*/
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
GetShapesOnBox(const Handle(GEOM_Object)& theBox,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theCheckShape - the shape to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
2009-02-13 17:16:39 +05:00
Standard_EXPORT Handle(TColStd_HSequenceOfInteger)
GetShapesOnShapeIDs(const Handle(GEOM_Object)& theCheckShape,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find sub-shapes complying with given status about surface
* \param theCheckShape - the shape to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
* \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
*/
Standard_EXPORT Handle(TColStd_HSequenceOfTransient)
2009-02-13 17:16:39 +05:00
GetShapesOnShape(const Handle(GEOM_Object)& theCheckShape,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
Standard_EXPORT Handle(GEOM_Object)
GetShapesOnShapeAsCompound(const Handle(GEOM_Object)& theCheckShape,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
2005-01-20 11:24:17 +05:00
2004-12-01 15:39:14 +05:00
private:
2009-02-13 17:16:39 +05:00
Handle(GEOM_Object) MakeShape (std::list<Handle(GEOM_Object)> theShapes,
const Standard_Integer theObjectType,
const Standard_Integer theFunctionType,
const TCollection_AsciiString& theMethodName);
// ----------------------------------------------------
// methods common for all GetShapesOnXXX() functions
// ----------------------------------------------------
/*!
* \brief Checks if theShapeType parameter of GetShapesOnXXX() is OK
2009-02-13 17:16:39 +05:00
* \param theShapeType - the shape type to check
* \retval bool - result of the check
*/
bool checkTypeShapesOn(const Standard_Integer theShapeType);
/*!
* \brief Creates Geom_Plane
2009-02-13 17:16:39 +05:00
* \param theAx1 - edge defining plane normal
* \retval Handle(Geom_Surface) - resulting surface
*/
Handle(Geom_Surface) makePlane(const TopoDS_Shape& theAx1);
/*!
* \brief Creates Geom_CylindricalSurface
2009-02-13 17:16:39 +05:00
* \param theAx1 - edge defining cylinder axis
* \param theRadius - cylinder radius
* \retval Handle(Geom_Surface) - resulting surface
*/
Handle(Geom_Surface) makeCylinder(const TopoDS_Shape& theAx1,
const Standard_Real theRadius);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theSurface - the surface to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Handle(TColStd_HSequenceOfInteger)
getShapesOnSurfaceIDs(const Handle(Geom_Surface)& theSurface,
const TopoDS_Shape& theShape,
TopAbs_ShapeEnum theShapeType,
GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find sub-shapes complying with given status about surface
* \param theSurface - the surface to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
* \param theShapeEntries - outgoing entries like "entry1, entry2, ..."
* \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
*/
Handle(TColStd_HSequenceOfTransient)
getShapesOnSurface(const Handle(Geom_Surface)& theSurface,
const Handle(GEOM_Object)& theShape,
TopAbs_ShapeEnum theShapeType,
GEOMAlgo_State theState,
TCollection_AsciiString & theShapeEntries);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about quadrangle
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theTopLeftPoint - top left quadrangle corner
* \param theTopRigthPoint - top right quadrangle corner
* \param theBottomLeftPoint - bottom left quadrangle corner
* \param theBottomRigthPoint - bottom right quadrangle corner
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Handle(TColStd_HSequenceOfInteger)
getShapesOnQuadrangleIDs (const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
const Handle(GEOM_Object)& theTopLeftPoint,
const Handle(GEOM_Object)& theTopRigthPoint,
const Handle(GEOM_Object)& theBottomLeftPoint,
const Handle(GEOM_Object)& theBottomRigthPoint,
const GEOMAlgo_State theState);
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theBox - the box to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Handle(TColStd_HSequenceOfInteger) getShapesOnBoxIDs(const Handle(GEOM_Object)& theBox,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
2009-02-13 17:16:39 +05:00
/*!
2012-08-09 13:58:02 +06:00
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theCheckShape - the shape to check state of sub-shapes against
2009-02-13 17:16:39 +05:00
* \param theShape - the shape to explore
2012-08-09 13:58:02 +06:00
* \param theShapeType - type of sub-shape of theShape
2009-02-13 17:16:39 +05:00
* \param theState - required state
2012-08-09 13:58:02 +06:00
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
2009-02-13 17:16:39 +05:00
*/
Handle(TColStd_HSequenceOfInteger) getShapesOnShapeIDs
(const Handle(GEOM_Object)& theCheckShape,
const Handle(GEOM_Object)& theShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState);
/*!
* \brief Find shape objects and their entries by their ids
2009-02-13 17:16:39 +05:00
* \param theShape - the main shape
* \param theShapeIDs - theShapeIDs - incoming shape ids
* \param theShapeEntries - outgoing entries like "entry1, entry2, ..."
* \retval Handle(TColStd_HSequenceOfTransient) - found shape objects
*/
Handle(TColStd_HSequenceOfTransient)
getObjectsShapesOn(const Handle(GEOM_Object)& theShape,
const Handle(TColStd_HSequenceOfInteger)& theShapeIDs,
TCollection_AsciiString & theShapeEntries);
/*!
* \brief Select the object created last
2009-02-13 17:16:39 +05:00
* \param theObj1 - Object 1
* \param theObj2 - Object 2
* \retval Handle(GEOM_Object) - selected object
*/
static Handle(GEOM_Object) getCreatedLast(const Handle(GEOM_Object)& theObj1,
const Handle(GEOM_Object)& theObj2);
2004-12-01 15:39:14 +05:00
};
#endif