X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FModel%2FModel_SelectionNaming.h;h=ff49de7bc8b9e80357dbcbf57706bd513a480f79;hb=72f21152437f7abaddd5fb3f3ccef481c2b713e4;hp=ca513fe76b4992ccc8c5a09b7513d1661e3cb9cf;hpb=07a45a94a93a5f1cc3d39f53328c12be074ff69b;p=modules%2Fshaper.git diff --git a/src/Model/Model_SelectionNaming.h b/src/Model/Model_SelectionNaming.h index ca513fe76..ff49de7bc 100644 --- a/src/Model/Model_SelectionNaming.h +++ b/src/Model/Model_SelectionNaming.h @@ -1,8 +1,22 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: Model_SelectionNaming.h -// Created: 11 Aug 2015 -// Author: Mikhail PONIKAROV +// Copyright (C) 2014-2017 CEA/DEN, EDF R&D +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// 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 +// +// See http://www.salome-platform.org/ or +// email : webmaster.salome@opencascade.com +// #ifndef Model_SelectionNaming_H_ #define Model_SelectionNaming_H_ @@ -31,7 +45,7 @@ public: /// Produces the string-name for the selected shape std::string namingName(ResultPtr& theContext, std::shared_ptr theSubSh, const std::string& theDefaultName, const bool theAnotherDoc); - + /// Makes a selection by the string-name /// \param theType string of the type of the shape /// \param theSubShapeName string-identifier of the selected shape @@ -42,13 +56,17 @@ public: std::shared_ptr theDoc, std::shared_ptr& theShapeToBeSelected, std::shared_ptr& theCont); - /// Searches the face more appropriate to the given curves (with higher level of matched parameters) + /// Searches the face more appropriate to the given curves + /// (with higher level of matched parameters) /// \param theConstr construction result that contains one or several faces - /// \param theCurves map from the face edges curves to orientation (-1 reversed, 0 unknown, 1 forward) + /// \param theCurves map from the face edges curves to orientation + /// (-1 reversed, 0 unknown, 1 forward) + /// \param theIsWire for wire algorithm isquite the same, + /// but if in face several wires, it returns the needed wire /// \returns faces fron this construction if found static std::shared_ptr findAppropriateFace( - std::shared_ptr& theConstr, - NCollection_DataMap& theCurves); + std::shared_ptr& theConstr, + NCollection_DataMap& theCurves, const bool theIsWire); /// Returns orientation of the edge in the context shape static int edgeOrientation(const TopoDS_Shape& theContext, TopoDS_Edge& theEdge); @@ -64,7 +82,7 @@ public: protected: /// Gets the stored name from the document std::string getShapeName(std::shared_ptr theDoc, const TopoDS_Shape& theShape, - const bool theAddContextName); + ResultPtr& theContext, const bool theAnotherDoc, const bool theWholeContext); }; #endif