X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=8f31318d6304242add5d76b354418ba736716af5;hb=3d28bcbab2f3ed0e40295e64f4e836caebc19fca;hp=514287a03a22a08f89a1a7467b30c6fb4247c4e9;hpb=7210ed3a44c73d261bb5abb28fae1489c5a35b30;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index 514287a03..8f31318d6 100644 --- a/src/GeomAPI/GeomAPI_Shape.h +++ b/src/GeomAPI/GeomAPI_Shape.h @@ -1,29 +1,90 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Shape.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV -#ifndef GeomAPI_Shape_HeaderFile -#define GeomAPI_Shape_HeaderFile +#ifndef GeomAPI_Shape_H_ +#define GeomAPI_Shape_H_ #include +#include +#include /**\class GeomAPI_Shape * \ingroup DataModel * \brief Interface to the topological shape object */ -class TopoDS_Shape; - -#define MY_SHAPE static_cast(myImpl) - -class GEOMAPI_EXPORT GeomAPI_Shape: public GeomAPI_Interface +class GeomAPI_Shape : public GeomAPI_Interface { public: + /// Shape type enum + enum ShapeType { + COMPOUND, COMPSOLID, SOLID, SHELL, + FACE, WIRE, EDGE, VERTEX, + SHAPE + }; + + public: /// Creation of empty (null) shape + GEOMAPI_EXPORT GeomAPI_Shape(); - bool isNull(); + /// Returns true if the underlied shape is null + GEOMAPI_EXPORT + bool isNull() const; + + /// Returns whether the shapes are equal + GEOMAPI_EXPORT + virtual bool isEqual(const std::shared_ptr theShape) const; + + /// Returns whether the shape is a vertex + GEOMAPI_EXPORT + virtual bool isVertex() const; + + /// Returns whether the shape is an edge + GEOMAPI_EXPORT + virtual bool isEdge() const; + + /// Returns whether the shape is a face + GEOMAPI_EXPORT + virtual bool isFace() const; + + /// Returns whether the shape is a compound + GEOMAPI_EXPORT + virtual bool isCompound() const; + /// Returns whether the shape is a compound of solids + GEOMAPI_EXPORT + virtual bool isCompoundOfSolids() const; + + /// Returns whether the shape is a solid + GEOMAPI_EXPORT + virtual bool isSolid() const; + + /// Returns whether the shape is a compsolid + GEOMAPI_EXPORT + virtual bool isCompSolid() const; + + /// Returns the shape type + GEOMAPI_EXPORT + virtual ShapeType shapeType() const; + + /// Computes boundary dimensions of the shape + /// Returns False if it is not possible + GEOMAPI_EXPORT + bool computeSize(double& theXmin, double& theYmin, double& theZmin, + double& theXmax, double& theYmax, double& theZmax) const; + + /// Returns the shape as BRep stream + GEOMAPI_EXPORT + std::string getShapeStream() const; }; -#endif +//! Pointer on list of shapes +typedef std::list > ListOfShape; +//! Pointer on attribute object +typedef std::shared_ptr GeomShapePtr; + +#endif