]> SALOME platform Git repositories - modules/geom.git/blob - src/ShHealOper/ShHealOper_ChangeOrientation.cxx
Salome HOME
Remove "MAC" ends of lines
[modules/geom.git] / src / ShHealOper / ShHealOper_ChangeOrientation.cxx
1 // Copyright (C) 2007-2011  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22 // File:      ShHealOper_ChangeOrientation.cxx
23 // Created:   11.07.06 11:46:45
24 // Author:    Sergey KUUL
25
26 #include <ShHealOper_ChangeOrientation.hxx>
27
28 #include <BRep_Builder.hxx>
29 #include <BRepBuilderAPI_Copy.hxx>
30
31 #include <TopoDS_Iterator.hxx>
32
33 //=======================================================================
34 //function : ShHealOper_ChangeOrientation()
35 //purpose  : Constructor
36 //=======================================================================
37
38 ShHealOper_ChangeOrientation::ShHealOper_ChangeOrientation ( const TopoDS_Shape& theShape )
39 {
40   Init(theShape);
41 }
42
43 //=======================================================================
44 //function : Init
45 //purpose  : 
46 //=======================================================================
47
48 void ShHealOper_ChangeOrientation::Init(const TopoDS_Shape& theShape)
49 {
50   ShHealOper_Tool::Init(theShape);
51 }
52
53 //=======================================================================
54 //function : Perform
55 //purpose  : 
56 //=======================================================================
57
58 Standard_Boolean ShHealOper_ChangeOrientation::Perform()
59 {
60   BRep_Builder B;
61   if (myInitShape.ShapeType() == TopAbs_SHELL) {
62     myResultShape = myInitShape.EmptyCopied();
63     TopoDS_Iterator itr (myInitShape);
64     while (itr.More()) {
65       B.Add(myResultShape,itr.Value().Reversed());
66       itr.Next();
67     }
68   }
69   else if (myInitShape.ShapeType() == TopAbs_FACE) {
70     myResultShape = myInitShape.EmptyCopied();
71     TopoDS_Iterator itr (myInitShape);
72     while (itr.More()) {
73       B.Add(myResultShape,itr.Value());
74       itr.Next();
75     }
76     myResultShape.Reverse();
77   }
78   else if ( myInitShape.ShapeType() == TopAbs_WIRE || myInitShape.ShapeType() == TopAbs_EDGE) {
79     myResultShape = myInitShape.EmptyCopied();
80     TopoDS_Iterator itr (myInitShape);
81     while (itr.More()) {
82       B.Add(myResultShape,itr.Value());
83       itr.Next();
84     }
85     myResultShape.Reverse();
86   }
87   else {
88     BRepBuilderAPI_Copy Copy (myInitShape);
89     if (!Copy.IsDone()) return false;
90
91     myResultShape = Copy.Shape();
92     if (myResultShape.IsNull()) return false;
93
94     if (myResultShape.Orientation() == TopAbs_FORWARD)
95       myResultShape.Orientation(TopAbs_REVERSED);
96     else
97       myResultShape.Orientation(TopAbs_FORWARD);
98   }
99
100   return true;
101 }