geom/src/AdvancedEngine/AdvancedEngine_PipeTShapeDriver.hxx

120 lines
4.8 KiB
C++
Raw Normal View History

2016-03-15 15:26:56 +03:00
// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE
2012-08-09 07:58:02 +00: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 10:44:41 +04:00
// version 2.1 of the License, or (at your option) any later version.
2012-08-09 07:58:02 +00: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.
//
// 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
//
// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
2013-04-01 12:25:01 +00:00
//
2012-08-09 07:58:02 +00:00
#ifndef _AdvancedEngine_PipeTShapeDriver_HXX
#define _AdvancedEngine_PipeTShapeDriver_HXX
2012-08-09 07:58:02 +00:00
#include "GEOM_BaseDriver.hxx"
2012-08-09 07:58:02 +00:00
#include "GEOMAlgo_State.hxx"
2013-03-15 14:28:11 +00:00
#include <TopAbs_ShapeEnum.hxx>
2012-08-09 07:58:02 +00:00
#include <TopTools_HSequenceOfShape.hxx>
#include <TColStd_HSequenceOfInteger.hxx>
#include <Geom_Surface.hxx>
2012-08-09 07:58:02 +00:00
DEFINE_STANDARD_HANDLE( AdvancedEngine_PipeTShapeDriver, GEOM_BaseDriver );
2012-08-09 07:58:02 +00:00
2014-09-23 15:48:25 +04:00
class AdvancedEngine_PipeTShapeDriver : public GEOM_BaseDriver
{
2012-08-09 07:58:02 +00:00
public:
// Methods PUBLIC
2012-08-09 07:58:02 +00:00
//
AdvancedEngine_PipeTShapeDriver();
virtual Standard_Integer Execute(Handle(TFunction_Logbook)& log) const;
virtual void Validate(Handle(TFunction_Logbook)&) const {}
Standard_Boolean MustExecute(const Handle(TFunction_Logbook)&) const { return Standard_True; }
2016-02-24 16:45:13 +03:00
static const Standard_GUID& GetID();
~AdvancedEngine_PipeTShapeDriver() {};
2012-08-09 07:58:02 +00:00
virtual bool GetCreationInformation(std::string& theOperationName,
std::vector<GEOM_Param>& params);
2012-08-09 07:58:02 +00:00
// Type management
//
DEFINE_STANDARD_RTTIEXT(AdvancedEngine_PipeTShapeDriver,GEOM_BaseDriver)
2012-08-09 07:58:02 +00:00
private:
2013-03-15 14:28:11 +00:00
2012-08-09 07:58:02 +00:00
/*!
* \brief Create a T-Shape based on pipes
* \param r1 - the internal radius of main pipe
2013-03-15 14:28:11 +00:00
* \param w1 - the thickness of main pipe
2012-08-09 07:58:02 +00:00
* \param l1 - the half-length of main pipe
* \param r2 - the internal radius of incident pipe
2013-03-15 14:28:11 +00:00
* \param w2 - the thickness of incident pipe
2012-08-09 07:58:02 +00:00
* \param l2 - the half-length of main pipe
* \retval TopoDS_Shape - Resulting shape
*/
2013-03-15 14:28:11 +00:00
TopoDS_Shape MakePipeTShape(double r1, double w1, double l1,
double r2, double w2, double l2) const;
2012-08-09 07:58:02 +00:00
/*!
* \brief Create a quarter of a T-Shape based on pipes
* \param r1 - the internal radius of main pipe
2013-03-15 14:28:11 +00:00
* \param w1 - the thickness of main pipe
2012-08-09 07:58:02 +00:00
* \param l1 - the half-length of main pipe
* \param r2 - the internal radius of incident pipe
2013-03-15 14:28:11 +00:00
* \param w2 - the thickness of incident pipe
2012-08-09 07:58:02 +00:00
* \param l2 - the half-length of main pipe
* \retval TopoDS_Shape - Resulting shape
*/
2013-03-15 14:28:11 +00:00
TopoDS_Shape MakeQuarterPipeTShape(double r1, double w1, double l1,
double r2, double w2, double l2) const;
2012-08-09 07:58:02 +00:00
/*!
* \brief Find IDs of sub-shapes complying with given status about surface
* \param theSurface - the surface to check state of sub-shapes against
* \param theShape - the shape to explore
* \param theShapeType - type of sub-shape of theShape
* \param theState - required state
* \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) const;
2013-03-15 14:28:11 +00:00
2012-08-09 07:58:02 +00:00
/*!
* \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
* \param theShapeType - type of sub-shape of theShape
* \param theState - required state
* \retval Handle(TColStd_HSequenceOfInteger) - IDs of found sub-shapes
*/
Handle(TColStd_HSequenceOfInteger)
GetShapesOnBoxIDs(const TopoDS_Shape& aBox,
const TopoDS_Shape& aShape,
const Standard_Integer theShapeType,
GEOMAlgo_State theState) const;
//=======================================================================
//function : getCommonShapesOnCylinders
//purpose : return the common edge between 2 cylindrical surfaces
// along OX and OZ
//=======================================================================
void GetCommonShapesOnCylinders(const TopoDS_Shape& theShape,
TopAbs_ShapeEnum theShapeType,
2013-03-15 14:28:11 +00:00
double r, double r2,
Handle(TopTools_HSequenceOfShape)& commonShapes) const;
2012-08-09 07:58:02 +00:00
};
#endif // _AdvancedEngine_PipeTShapeDriver_HXX