X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Shape.h;h=ccb1153d33c57809a7bf76c3f337ee64ba3200b1;hb=29bc47d2f0f38f132e4f578feec9a1d1c8e514fe;hp=b557e845ed47cb50052b6d8d43923969ef0a90cc;hpb=3244e0f3d7e585ccfc3c37c56fbf5d6826055448;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Shape.h b/src/GeomAPI/GeomAPI_Shape.h index b557e845e..ccb1153d3 100644 --- a/src/GeomAPI/GeomAPI_Shape.h +++ b/src/GeomAPI/GeomAPI_Shape.h @@ -1,34 +1,127 @@ +// 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 + }; + + /// Shape orientation + enum Orientation { + FORWARD, + REVERSED, + INTERNAL, + EXTERNAL + }; + + public: /// Creation of empty (null) shape + GEOMAPI_EXPORT GeomAPI_Shape(); - bool isNull(); + /// \return a new Shape with the same Orientation and Location and a new TShape with the same + /// geometry and no sub-shapes. + GEOMAPI_EXPORT std::shared_ptr emptyCopied() const; + + /// 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 compound where all elements are topologically connected + GEOMAPI_EXPORT + virtual bool isConnectedTopology() 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 whether the shape is planar + GEOMAPI_EXPORT + virtual bool isPlanar() const; + + /// Returns the shape type + GEOMAPI_EXPORT + virtual ShapeType shapeType() const; + + /// Returns the type enumeration by the string-type + GEOMAPI_EXPORT static ShapeType shapeTypeByStr(std::string theType); + + /// \return the shape type as string. + GEOMAPI_EXPORT + virtual std::string shapeTypeStr() const; + + /// \return the shape orientation. + GEOMAPI_EXPORT virtual Orientation orientation() const; + + /// Sets the shape orientation. + GEOMAPI_EXPORT virtual void setOrientation(const Orientation theOrientation); + + /// \return true if passed shape is a sub-shape of this shape. + /// \param theShape shape to search. + GEOMAPI_EXPORT virtual bool isSubShape(const std::shared_ptr theShape) 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