X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FGeomAPI%2FGeomAPI_Wire.h;h=e0f2651bcbc09db6cb41a2ab285ea95b70498f02;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=888e9b19c4165e2853fa7a1291118ebf62e3b5a1;hpb=dc7d4d86b58b81684abc9b5a2be8ec30f210c2da;p=modules%2Fshaper.git diff --git a/src/GeomAPI/GeomAPI_Wire.h b/src/GeomAPI/GeomAPI_Wire.h index 888e9b19c..e0f2651bc 100644 --- a/src/GeomAPI/GeomAPI_Wire.h +++ b/src/GeomAPI/GeomAPI_Wire.h @@ -1,4 +1,4 @@ -// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// Copyright (C) 2014-2024 CEA, EDF // // This library is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public @@ -12,10 +12,9 @@ // // You should have received a copy of the GNU Lesser General Public // License along with this library; if not, write to the Free Software -// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA // -// See http://www.salome-platform.org/ or -// email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // #ifndef GeomAPI_Wire_H_ @@ -23,6 +22,8 @@ #include "GeomAPI_Shape.h" +class GeomAPI_Pnt; + /// \class GeomAPI_Wire /// \ingroup DataModel /// \brief Interface to the wire object @@ -34,6 +35,20 @@ public: /// Creation of wire by the wire-shape GEOMAPI_EXPORT GeomAPI_Wire(const std::shared_ptr& theShape); + + /// Returns "closed" status of the wire + GEOMAPI_EXPORT bool isClosed() const; + + /// Returns \c true if the wire is a polygon + /// \param[out] thePoints vertices of the polygon + GEOMAPI_EXPORT bool isPolygon(std::list >& thePoints) const; + + /// Returns \c true if the wire is a rectangle + /// \param[out] thePoints corners of the rectangle + GEOMAPI_EXPORT bool isRectangle(std::list >& thePoints) const; + + /// Return middle point on the wire + GEOMAPI_EXPORT virtual std::shared_ptr middlePoint() const; }; typedef std::shared_ptr GeomWirePtr;