X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=8e2c22f9a41afe72addb07b7cb9c353fb3cf69b7;hb=aa48919bb1ecb71f07d9ac5fcd1bad170e7ed547;hp=64292dee39122146c42b86ed4511a8a825a6ecac;hpb=cd9217d7e87997ec8bc150a6d8c389e742ca0f84;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index 64292dee3..8e2c22f9a 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,22 +8,24 @@ #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 { public: /// Creation of empty (null) shape GeomAPI_Shape(); - bool isNull(); + /// Returns true if the underlied shape is null + 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; @@ -29,7 +33,22 @@ 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; + + /// Returns the shape as BRep stream + std::string getShapeStream() const; }; -#endif +//! Pointer on list of shapes +typedef std::list > ListOfShape; +//! Pointer on attribute object +typedef std::shared_ptr GeomShapePtr; + +#endif