X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=08281bb2919ccb1e936323fe76660c23fd48716b;hb=7b575e65da4aaf7e4cbf41ccf7d61b83c5842b7f;hp=c55d9ab314d3b5cff5e5ce8a9228de60c652eb7b;hpb=9e869ede4d8c56262bb20534543c2bf56cd6a91b;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index c55d9ab31..08281bb29 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 @@ -15,10 +17,19 @@ */ class GEOMAPI_EXPORT 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_Shape(); + /// Returns true if the underlied shape is null bool isNull() const; /// Returns whether the shapes are equal @@ -30,6 +41,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; + + /// Returns whether the shape is a face + virtual bool isCompound() const; + + /// Returns whether the shape is a solid + virtual bool isSolid() 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; }; //! Pointer on list of shapes