0031313: Foundation Classes - Dump improvement for classes
[occt.git] / src / TopoDS / TopoDS_Iterator.cxx
1 // Created on: 1993-01-21
2 // Created by: Remi LEQUETTE
3 // Copyright (c) 1993-1999 Matra Datavision
4 // Copyright (c) 1999-2014 OPEN CASCADE SAS
5 //
6 // This file is part of Open CASCADE Technology software library.
7 //
8 // This library is free software; you can redistribute it and/or modify it under
9 // the terms of the GNU Lesser General Public License version 2.1 as published
10 // by the Free Software Foundation, with special exception defined in the file
11 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12 // distribution for complete text of the license and disclaimer of any warranty.
13 //
14 // Alternatively, this file may be used under the terms of Open CASCADE
15 // commercial license or contractual agreement.
16
17 #define No_Standard_NoSuchObject
18
19
20 #include <Standard_NoMoreObject.hxx>
21 #include <Standard_NoSuchObject.hxx>
22 #include <TopoDS_Iterator.hxx>
23 #include <TopoDS_Shape.hxx>
24
25 //=======================================================================
26 //function : Initialize
27 //purpose  : 
28 //=======================================================================
29 void TopoDS_Iterator::Initialize(const TopoDS_Shape& S,
30                                  const Standard_Boolean cumOri,
31                                  const Standard_Boolean cumLoc)
32 {
33   if (cumLoc)
34     myLocation = S.Location();
35   else
36     myLocation.Identity();
37   if (cumOri)
38     myOrientation = S.Orientation();
39   else
40     myOrientation = TopAbs_FORWARD;
41
42   if (S.IsNull())
43     myShapes = TopoDS_ListIteratorOfListOfShape();
44   else
45     myShapes.Initialize(S.TShape()->myShapes);
46
47   if (More()) {
48     myShape = myShapes.Value();
49     myShape.Orientation(TopAbs::Compose(myOrientation,myShape.Orientation()));
50     if (!myLocation.IsIdentity())
51       myShape.Move(myLocation);
52   }
53 }
54
55 //=======================================================================
56 //function : Next
57 //purpose  : 
58 //=======================================================================
59
60 void TopoDS_Iterator::Next()
61 {
62   myShapes.Next();
63   if (More()) {
64     myShape = myShapes.Value();
65     myShape.Orientation(TopAbs::Compose(myOrientation,myShape.Orientation()));
66     if (!myLocation.IsIdentity())
67       myShape.Move(myLocation);
68   }
69 }