geom/src/GEOMAlgo/GEOMAlgo_ShapeInfo.hxx

273 lines
5.4 KiB
C++
Raw Normal View History

2009-02-13 17:16:39 +05:00
// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE
//
2009-02-13 17:16:39 +05:00
// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
//
// 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.
//
// 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
//
#ifndef _GEOMAlgo_ShapeInfo_HeaderFile
#define _GEOMAlgo_ShapeInfo_HeaderFile
#ifndef _TopAbs_ShapeEnum_HeaderFile
#include <TopAbs_ShapeEnum.hxx>
#endif
#ifndef _Standard_Integer_HeaderFile
#include <Standard_Integer.hxx>
#endif
#ifndef _GEOMAlgo_KindOfShape_HeaderFile
#include <GEOMAlgo_KindOfShape.hxx>
#endif
#ifndef _GEOMAlgo_KindOfName_HeaderFile
#include <GEOMAlgo_KindOfName.hxx>
#endif
#ifndef _GEOMAlgo_KindOfBounds_HeaderFile
#include <GEOMAlgo_KindOfBounds.hxx>
#endif
#ifndef _GEOMAlgo_KindOfClosed_HeaderFile
#include <GEOMAlgo_KindOfClosed.hxx>
#endif
#ifndef _gp_Pnt_HeaderFile
#include <gp_Pnt.hxx>
#endif
#ifndef _gp_Dir_HeaderFile
#include <gp_Dir.hxx>
#endif
#ifndef _gp_Ax3_HeaderFile
#include <gp_Ax3.hxx>
#endif
#ifndef _Standard_Real_HeaderFile
#include <Standard_Real.hxx>
#endif
class gp_Pnt;
class gp_Dir;
class gp_Ax2;
class gp_Ax3;
#ifndef _Standard_HeaderFile
#include <Standard.hxx>
#endif
#ifndef _Standard_Macro_HeaderFile
#include <Standard_Macro.hxx>
#endif
class GEOMAlgo_ShapeInfo {
public:
void* operator new(size_t,void* anAddress)
{
return anAddress;
}
void* operator new(size_t size)
{
return Standard::Allocate(size);
}
void operator delete(void *anAddress)
{
if (anAddress) Standard::Free((Standard_Address&)anAddress);
}
// Methods PUBLIC
//
Standard_EXPORT GEOMAlgo_ShapeInfo();
Standard_EXPORT virtual ~GEOMAlgo_ShapeInfo();
Standard_EXPORT void Reset() ;
Standard_EXPORT void SetType(const TopAbs_ShapeEnum aType) ;
Standard_EXPORT TopAbs_ShapeEnum Type() const;
Standard_EXPORT void SetNbSubShapes(const TopAbs_ShapeEnum aType,const Standard_Integer aNb) ;
Standard_EXPORT Standard_Integer NbSubShapes(const TopAbs_ShapeEnum aType) const;
Standard_EXPORT void SetKindOfShape(const GEOMAlgo_KindOfShape aT) ;
Standard_EXPORT GEOMAlgo_KindOfShape KindOfShape() const;
Standard_EXPORT void SetKindOfName(const GEOMAlgo_KindOfName aT) ;
Standard_EXPORT GEOMAlgo_KindOfName KindOfName() const;
Standard_EXPORT void SetKindOfBounds(const GEOMAlgo_KindOfBounds aT) ;
Standard_EXPORT GEOMAlgo_KindOfBounds KindOfBounds() const;
Standard_EXPORT void SetKindOfClosed(const GEOMAlgo_KindOfClosed aT) ;
Standard_EXPORT GEOMAlgo_KindOfClosed KindOfClosed() const;
Standard_EXPORT void SetLocation(const gp_Pnt& aP) ;
Standard_EXPORT const gp_Pnt& Location() const;
Standard_EXPORT void SetDirection(const gp_Dir& aD) ;
Standard_EXPORT const gp_Dir& Direction() const;
Standard_EXPORT void SetPosition(const gp_Ax2& aAx2) ;
Standard_EXPORT void SetPosition(const gp_Ax3& aAx3) ;
Standard_EXPORT const gp_Ax3& Position() const;
Standard_EXPORT void SetPnt1(const gp_Pnt& aP) ;
Standard_EXPORT const gp_Pnt& Pnt1() const;
Standard_EXPORT void SetPnt2(const gp_Pnt& aP) ;
Standard_EXPORT const gp_Pnt& Pnt2() const;
Standard_EXPORT void SetRadius1(const Standard_Real aR) ;
Standard_EXPORT Standard_Real Radius1() const;
Standard_EXPORT void SetRadius2(const Standard_Real aR) ;
Standard_EXPORT Standard_Real Radius2() const;
Standard_EXPORT void SetLength(const Standard_Real aL) ;
Standard_EXPORT Standard_Real Length() const;
Standard_EXPORT void SetWidth(const Standard_Real aW) ;
Standard_EXPORT Standard_Real Width() const;
Standard_EXPORT void SetHeight(const Standard_Real aH) ;
Standard_EXPORT Standard_Real Height() const;
Standard_EXPORT void Dump() const;
protected:
// Methods PROTECTED
//
Standard_EXPORT void DumpVertex() const;
Standard_EXPORT void DumpEdge() const;
Standard_EXPORT void DumpWire() const;
Standard_EXPORT void DumpFace() const;
Standard_EXPORT void DumpShell() const;
Standard_EXPORT void DumpSolid() const;
Standard_EXPORT void DumpCompSolid() const;
Standard_EXPORT void DumpCompound() const;
// Fields PROTECTED
//
TopAbs_ShapeEnum myType;
Standard_Integer myNbSubShapes[9];
GEOMAlgo_KindOfShape myKindOfShape;
GEOMAlgo_KindOfName myKindOfName;
GEOMAlgo_KindOfBounds myKindOfBounds;
GEOMAlgo_KindOfClosed myKindOfClosed;
gp_Pnt myLocation;
gp_Dir myDirection;
gp_Ax3 myPosition;
Standard_Real myRadius1;
Standard_Real myRadius2;
Standard_Real myLength;
Standard_Real myWidth;
Standard_Real myHeight;
gp_Pnt myPnt1;
gp_Pnt myPnt2;
Standard_Integer myNbTypes;
private:
// Methods PRIVATE
//
// Fields PRIVATE
//
};
// other Inline functions and methods (like "C++: function call" methods)
//
#endif