X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROData%2FHYDROData_TopoCurve.h;h=e85b7550381a6064b67211f4e5193e32f017bba8;hb=a10433b0e4c819c3e85194f15b2bff87aa25df3f;hp=a145b5f65b084300f9964622e0ce42a4daac8b04;hpb=19ae50f3858a077a34385debc9e08de1d8fc42b9;p=modules%2Fhydro.git diff --git a/src/HYDROData/HYDROData_TopoCurve.h b/src/HYDROData/HYDROData_TopoCurve.h index a145b5f6..e85b7550 100644 --- a/src/HYDROData/HYDROData_TopoCurve.h +++ b/src/HYDROData/HYDROData_TopoCurve.h @@ -1,8 +1,4 @@ -// Copyright (C) 2007-2015 CEA/DEN, EDF R&D, OPEN CASCADE -// -// Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, -// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS -// +// Copyright (C) 2014-2015 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 @@ -30,10 +26,17 @@ #include #include #include +#include +#include class TopoDS_Wire; -//! The type represents a 1 monifold connected topo curve +//! Get the parameter of the projected point on the curve, and return the distance of the original point +double ProjectPointToCurve(const gp_XYZ& thePoint, + const Adaptor3d_Curve& theCurve, + double& theParameter); + +//! The type represents a 1 manifold connected topo curve //! with forward orientation. class HYDROData_TopoCurve { @@ -45,7 +48,7 @@ public: HYDROData_TopoCurve(const TopoDS_Edge& theEdge) {myEdges.push_back(theEdge);} //! Initializes the curve by the wire. - //! Returns 'false' if the wire is not 1 monifold or + //! Returns 'false' if the wire is not 1 manifold or //! is disconnected or is empty. HYDRODATA_EXPORT bool Initialize(const TopoDS_Wire& theWire); @@ -72,7 +75,7 @@ public: //! Cuts the curve in the given parameter of the given edge and //! fills the cut part. //! Returns 'true' if: - //! - the curve is open and was splitted into two parts or + //! - the curve is open and was split into two parts or //! - the curve is closed and was cut into an open curve. HYDRODATA_EXPORT bool Cut( const std::list::iterator& theEdgePosition, @@ -152,7 +155,7 @@ public: std::deque& theCurves) { HYDROData_TopoCurve aCurve; - if (!aCurve.Initialize(theWire)) + if (aCurve.Initialize(theWire)) { return aCurve.Connect(theTolerance, theCurves); } @@ -168,7 +171,7 @@ public: const double theDeflection, HYDROData_TopoCurve& theCurve) const; //! Calculates the values of the curve in its knots. - //! Returns 'false' if a curve edge has a nonidentity location or a nonforward + //! Returns 'false' if a curve edge has a non-identity location or a non-forward //! orientation or has no a B-spline representation. HYDRODATA_EXPORT bool ValuesInKnots(std::list& theValues) const;