a48d27376c62e537b0624d0f1f98d6be05700786
[occt.git] / src / MAT / MAT_Edge.cxx
1 // Created on: 1992-10-14
2 // Created by: Gilles DEBARBOUILLE
3 // Copyright (c) 1992-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
18 #include <MAT_Bisector.hxx>
19 #include <MAT_Edge.hxx>
20 #include <Standard_Type.hxx>
21
22 IMPLEMENT_STANDARD_RTTIEXT(MAT_Edge,Standard_Transient)
23
24 MAT_Edge::MAT_Edge()
25 {
26 }
27     
28 void MAT_Edge::EdgeNumber(const Standard_Integer anumber)
29 {
30   theedgenumber = anumber;
31 }
32
33 void MAT_Edge::FirstBisector(const Handle(MAT_Bisector)& abisector)
34 {
35   thefirstbisector = abisector;
36 }
37
38 void MAT_Edge::SecondBisector(const Handle(MAT_Bisector)& abisector)
39 {
40   thesecondbisector = abisector;
41 }
42
43 void MAT_Edge::Distance(const Standard_Real adistance)
44 {
45   thedistance = adistance;
46 }
47
48 void MAT_Edge::IntersectionPoint(const Standard_Integer apoint)
49 {
50   theintersectionpoint = apoint;
51 }
52
53 Standard_Integer MAT_Edge::EdgeNumber() const
54 {
55   return theedgenumber;
56 }
57
58 Handle(MAT_Bisector) MAT_Edge::FirstBisector() const
59 {
60   return thefirstbisector;
61 }
62
63 Handle(MAT_Bisector) MAT_Edge::SecondBisector() const
64 {
65   return thesecondbisector;
66 }
67
68 Standard_Real MAT_Edge::Distance() const
69 {
70   return thedistance;
71 }
72
73 Standard_Integer MAT_Edge::IntersectionPoint() const
74 {
75   return theintersectionpoint;
76 }
77
78 void MAT_Edge::Dump(const Standard_Integer,
79                      const Standard_Integer) const
80 {
81 }
82