41e6de6338f0d6b21f52d706811eebeec20bf813
[occt.git] / src / MAT / MAT_BasicElt.cxx
1 // Created on: 1993-05-05
2 // Created by: Yves FRICAUD
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 #include <MAT_BasicElt.ixx>
18 #include <MAT_SequenceOfArc.hxx>
19 #include <MAT_Node.hxx>
20
21 //========================================================================
22 // function:
23 // purpose :
24 //========================================================================
25 MAT_BasicElt::MAT_BasicElt(const Standard_Integer anInteger)
26      : startLeftArc (0),
27       endLeftArc   (0),
28       index(anInteger)
29 {
30 }
31
32 //========================================================================
33 // function: StartArc
34 // purpose :
35 //========================================================================
36 Handle(MAT_Arc)  MAT_BasicElt::StartArc() const
37 {
38   return (MAT_Arc*)startLeftArc;
39 }
40
41 //========================================================================
42 // function: EndArc
43 // purpose :
44 //========================================================================
45 Handle(MAT_Arc)  MAT_BasicElt::EndArc() const
46 {
47   return (MAT_Arc*)endLeftArc;
48 }
49
50 //========================================================================
51 // function: Index
52 // purpose :
53 //========================================================================
54 Standard_Integer  MAT_BasicElt::Index() const
55 {
56    return index;
57 }
58
59 //========================================================================
60 // function: GeomIndex
61 // purpose :
62 //========================================================================
63 Standard_Integer  MAT_BasicElt::GeomIndex() const
64 {
65    return geomIndex;
66 }
67
68
69 //========================================================================
70 // function: SetStartArc
71 // purpose :
72 //========================================================================
73 void  MAT_BasicElt::SetStartArc(const Handle_MAT_Arc& anArc)
74 {
75   startLeftArc = anArc.operator->();
76 }
77
78
79 //========================================================================
80 // function: SetEndArc
81 // purpose :
82 //========================================================================
83 void  MAT_BasicElt::SetEndArc(const Handle_MAT_Arc& anArc)
84 {
85   endLeftArc = anArc.operator->();
86 }
87
88 //========================================================================
89 // function: SetIndex
90 // purpose :
91 //========================================================================
92 void MAT_BasicElt::SetIndex(const Standard_Integer anInteger)
93 {
94   index = anInteger;
95 }
96
97 //========================================================================
98 // function: SetGeomIndex
99 // purpose :
100 //========================================================================
101 void MAT_BasicElt::SetGeomIndex(const Standard_Integer anInteger)
102 {
103   geomIndex = anInteger;
104 }
105
106
107
108
109