DEFINE_STANDARD_HANDLE(HYDROData_ShapesGroup, HYDROData_Entity)
/**\class HYDROData_ShapesGroup
- * \brief Class that stores/retreives the sequence of shapes.
+ * \brief Class that stores/retreives the sequence of shapes.
*/
class HYDROData_ShapesGroup : public HYDROData_Entity
{
HYDRODATA_EXPORT virtual bool CanRemove();
public:
- // Public methods to work with reference Edges
+ // Public methods to work with reference Shapes
/**
- * Add new one edge for the group.
+ * Add new one shape for the group.
*/
HYDRODATA_EXPORT virtual void AddShape( const TopoDS_Shape& theShape );
/**
- * Sets new sequence of edges for the group.
+ * Sets new sequence of shapes for the group.
*/
HYDRODATA_EXPORT virtual void SetShapes( const TopTools_SequenceOfShape& theShapes );
/**
- * Returns all edges of the group.
+ * Returns all shapes of the group.
*/
HYDRODATA_EXPORT virtual void GetShapes( TopTools_SequenceOfShape& theShapes ) const;
/**
- * Removes all edges from the group.
+ * Removes all shapes from the group.
*/
HYDRODATA_EXPORT virtual void RemoveShapes();