Salome HOME
110a42cc9c68c7da039f3e24a46aadae3aac0159
[modules/geom.git] / src / CurveCreator / CurveCreator_Section.cxx
1 // Copyright (C) 2013-2023  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   CurveCreator::Coordinates::const_iterator aPIt = myPoints.begin();
40   CurveCreator::Coordinates::const_iterator aPItLast = myPoints.end();
41
42   gp_Pnt aFirstPoint;
43   gp_Pnt aPoint;
44
45   if( myPoints.size() > 0 )
46   {
47     aFirstPoint = gp_Pnt(*aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
48     aPoint = aFirstPoint;
49     aTmpPoints.push_back(aPoint);
50   }
51
52   for (; aPIt != aPItLast; aPIt += theDimension)
53   {
54     const gp_Pnt aPoint2(
55       *aPIt, *(aPIt + 1), (theDimension == 2) ? 0 : *(aPIt + 2));
56     if (!aPoint.IsEqual(aPoint2, POINT_CONFUSION))
57     {
58       aPoint = aPoint2;
59       aTmpPoints.push_back(aPoint);
60     }
61   }
62
63   int aPointCount = aTmpPoints.size();
64   if (myIsClosed)
65   {
66     while (aPointCount > 1 &&
67       aFirstPoint.IsEqual(aTmpPoints[aPointCount - 1], POINT_CONFUSION))
68     {
69       --aPointCount;
70     }
71   }
72
73   points = new TColgp_HArray1OfPnt(1, aPointCount);
74   for (int aPI = 0; aPI < aPointCount; ++aPI)
75   {
76     points->SetValue(aPI + 1, aTmpPoints[aPI]);
77   }
78
79   return points;
80 }