X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=8ff96d9815ca5e00c3e93ed1d2dc5e2b201a6100;hb=60e95a5502a6940c6c27ce5d561b3c684b0b0a4f;hp=03f75d7453da0e4c85e475bb7e1595a2f6d44b0e;hpb=758a57d77b6fa3a0485fa3378a1280c7e87a74aa;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index 03f75d745..8ff96d981 100644 --- a/src/GeomAPI/GeomAPI_Shape.h +++ b/src/GeomAPI/GeomAPI_Shape.h @@ -1,3 +1,5 @@ +// Copyright (C) 2014-20xx CEA/DEN, EDF R&D + // File: GeomAPI_Shape.hxx // Created: 23 Apr 2014 // Author: Mikhail PONIKAROV @@ -6,7 +8,7 @@ #define GeomAPI_Shape_H_ #include -#include +#include #include /**\class GeomAPI_Shape @@ -22,7 +24,7 @@ class GEOMAPI_EXPORT GeomAPI_Shape : public GeomAPI_Interface bool isNull() const; /// Returns whether the shapes are equal - virtual bool isEqual(const boost::shared_ptr theShape) const; + virtual bool isEqual(const std::shared_ptr theShape) const; /// Returns whether the shape is a vertex virtual bool isVertex() const; @@ -30,12 +32,21 @@ class GEOMAPI_EXPORT GeomAPI_Shape : public GeomAPI_Interface /// 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; }; //! Pointer on list of shapes -typedef std::list > ListOfShape; +typedef std::list > ListOfShape; //! Pointer on attribute object -typedef boost::shared_ptr GeomShapePtr; +typedef std::shared_ptr GeomShapePtr; #endif