X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=8ff96d9815ca5e00c3e93ed1d2dc5e2b201a6100;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=b557e845ed47cb50052b6d8d43923969ef0a90cc;hpb=3ca758d1ecab7b2e601b36425ea4c20e9e857412;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index b557e845e..8ff96d981 100644 --- a/src/GeomAPI/GeomAPI_Shape.h +++ b/src/GeomAPI/GeomAPI_Shape.h @@ -1,34 +1,52 @@ +// 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_EXPORT GeomAPI_Shape : public GeomAPI_Interface { -public: + public: /// Creation of empty (null) shape GeomAPI_Shape(); - bool isNull(); + bool isNull() const; + + /// Returns whether the shapes are equal + virtual bool isEqual(const std::shared_ptr theShape) const; /// Returns whether the shape is a vertex virtual bool isVertex() const; /// Returns whether the shape is an edge virtual bool isEdge() const; + + /// Returns whether the shape is a face + virtual bool isFace() const; + + /// Computes boundary dimensions of the shape + /// Returns False if it is not possible + bool computeSize(double& theXmin, double& theYmin, double& theZmin, + double& theXmax, double& theYmax, double& theZmax) const; + + std::string getShapeStream() const; }; -#endif +//! Pointer on list of shapes +typedef std::list > ListOfShape; +//! Pointer on attribute object +typedef std::shared_ptr GeomShapePtr; + +#endif