Salome HOME
patch for crash
[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 Handle(TColgp_HArray1OfPnt) CurveCreator_Section::GetDifferentPoints( int theDimension ) const
34 {
35   Handle(TColgp_HArray1OfPnt) points;
36
37   std::vector<gp_Pnt> aTmpPoints;
38
39   if( myPoints.size() > 0 )
40   {
41     CurveCreator::Coordinates::const_iterator aPIt = myPoints.begin();
42     CurveCreator::Coordinates::const_iterator aPItLast = myPoints.end();
43     const gp_Pnt aFirstPoint(
44       *aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
45     gp_Pnt aPoint = aFirstPoint;
46     aTmpPoints.push_back(aPoint);
47   }
48
49   for (; aPIt != aPItLast; aPIt += theDimension)
50   {
51     const gp_Pnt aPoint2(
52       *aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
53     if (!aPoint.IsEqual(aPoint2, POINT_CONFUSION))
54     {
55       aPoint = aPoint2;
56       aTmpPoints.push_back(aPoint);
57     }
58   }
59
60   int aPointCount = aTmpPoints.size();
61   if (myIsClosed)
62   {
63     while (aPointCount > 1 &&
64       aFirstPoint.IsEqual(aTmpPoints[aPointCount - 1], POINT_CONFUSION))
65     {
66       --aPointCount;
67     }
68   }
69
70   points = new TColgp_HArray1OfPnt(1, aPointCount);
71   for (int aPI = 0; aPI < aPointCount; ++aPI)
72   {
73     points->SetValue(aPI + 1, aTmpPoints[aPI]);
74   }
75
76   return points;
77 }