]> SALOME platform Git repositories - modules/geom.git/blob - src/CurveCreator/CurveCreator_Section.cxx
Salome HOME
Merge remote branch 'origin/hydro/imps_2015'
[modules/geom.git] / src / CurveCreator / CurveCreator_Section.cxx
1 // Copyright (C) 2013-2016  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 // File:        CurveCreator_Section.cxx
21 // Author:      Aleksandr BOBKOV
22
23 #include "CurveCreator_Section.hxx"
24
25 #include <vector>
26
27 const double POINT_CONFUSION = 1e-4;
28
29 //=======================================================================
30 // function: GetDifferentPoints
31 // purpose:
32 //=======================================================================
33 void CurveCreator_Section::GetDifferentPoints(
34   const int theDimension, Handle(TColgp_HArray1OfPnt)& thePoints) const
35 {
36   std::vector<gp_Pnt> aTmpPoints;
37   CurveCreator::Coordinates::const_iterator aPIt = myPoints.begin();
38   CurveCreator::Coordinates::const_iterator aPItLast = myPoints.end();
39   const gp_Pnt aFirstPoint(
40     *aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
41   gp_Pnt aPoint = aFirstPoint;
42   aTmpPoints.push_back(aPoint);
43
44   for (; aPIt != aPItLast; aPIt += theDimension)
45   {
46     const gp_Pnt aPoint2(
47       *aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
48     if (!aPoint.IsEqual(aPoint2, POINT_CONFUSION))
49     {
50       aPoint = aPoint2;
51       aTmpPoints.push_back(aPoint);
52     }
53   }
54
55   int aPointCount = aTmpPoints.size();
56   if (myIsClosed)
57   {
58     while (aPointCount > 1 &&
59       aFirstPoint.IsEqual(aTmpPoints[aPointCount - 1], POINT_CONFUSION))
60     {
61       --aPointCount;
62     }
63   }
64
65   thePoints = new TColgp_HArray1OfPnt(1, aPointCount);
66   for (int aPI = 0; aPI < aPointCount; ++aPI)
67   {
68     thePoints->SetValue(aPI + 1, aTmpPoints[aPI]);
69   }
70 }