Salome HOME
Issue #1369: Added "Create Shell" feature.
[modules/shaper.git] / src / GeomAPI / GeomAPI_Shape.h
index 08281bb2919ccb1e936323fe76660c23fd48716b..1ed86db9c1059bf83a3acc89f098d11bc9382961 100644 (file)
@@ -15,7 +15,7 @@
  * \ingroup DataModel
  * \brief Interface to the topological shape object
  */
-class GEOMAPI_EXPORT GeomAPI_Shape : public GeomAPI_Interface
+class GeomAPI_Shape : public GeomAPI_Interface
 {
 public:
   /// Shape type enum
@@ -27,35 +27,70 @@ public:
 
  public:
   /// Creation of empty (null) shape
+  GEOMAPI_EXPORT 
   GeomAPI_Shape();
 
   /// 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<GeomAPI_Shape> 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 face
+  /// 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 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;
+
+  /// \return the shape type as string.
+  GEOMAPI_EXPORT
+  virtual std::string shapeTypeStr() const;
+
+  /// \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<GeomAPI_Shape> 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;
 };