1 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 // This file is part of Open CASCADE Technology software library.
5 // This library is free software; you can redistribute it and/or modify it under
6 // the terms of the GNU Lesser General Public License version 2.1 as published
7 // by the Free Software Foundation, with special exception defined in the file
8 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9 // distribution for complete text of the license and disclaimer of any warranty.
11 // Alternatively, this file may be used under the terms of Open CASCADE
12 // commercial license or contractual agreement.
15 #include <Standard_Type.hxx>
16 #include <StepShape_Edge.hxx>
17 #include <StepShape_OrientedEdge.hxx>
18 #include <StepShape_Vertex.hxx>
19 #include <TCollection_HAsciiString.hxx>
21 StepShape_OrientedEdge::StepShape_OrientedEdge () {}
24 void StepShape_OrientedEdge::Init(
25 const Handle(TCollection_HAsciiString)& aName,
26 const Handle(StepShape_Edge)& aEdgeElement,
27 const Standard_Boolean aOrientation)
29 // --- classe own fields ---
30 edgeElement = aEdgeElement;
31 orientation = aOrientation;
32 // --- classe inherited fields ---
33 Handle(StepShape_Vertex) aEdgeStart;
35 Handle(StepShape_Vertex) aEdgeEnd;
37 StepShape_Edge::Init(aName, aEdgeStart, aEdgeEnd);
41 void StepShape_OrientedEdge::SetEdgeElement(const Handle(StepShape_Edge)& aEdgeElement)
43 edgeElement = aEdgeElement;
46 Handle(StepShape_Edge) StepShape_OrientedEdge::EdgeElement() const
51 void StepShape_OrientedEdge::SetOrientation(const Standard_Boolean aOrientation)
53 orientation = aOrientation;
56 Standard_Boolean StepShape_OrientedEdge::Orientation() const
61 void StepShape_OrientedEdge::SetEdgeStart(const Handle(StepShape_Vertex)& /*aEdgeStart*/)
63 // WARNING : the field is redefined.
64 // field set up forbidden.
65 cout << "Field is redefined, SetUp Forbidden" << endl;
68 Handle(StepShape_Vertex) StepShape_OrientedEdge::EdgeStart() const
70 // WARNING : the field is redefined.
71 // method body is not yet automaticly wrote
72 if (edgeElement.IsNull())
75 return edgeElement->EdgeStart();
78 return edgeElement->EdgeEnd();
82 void StepShape_OrientedEdge::SetEdgeEnd(const Handle(StepShape_Vertex)& /*aEdgeEnd*/)
84 // WARNING : the field is redefined.
85 // field set up forbidden.
86 cout << "Field is redefined, SetUp Forbidden" << endl;
89 Handle(StepShape_Vertex) StepShape_OrientedEdge::EdgeEnd() const
91 // WARNING : the field is redefined.
92 // method body is not yet automaticly wrote
93 if (edgeElement.IsNull())
96 return edgeElement->EdgeEnd();
99 return edgeElement->EdgeStart();