1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
// File: StepToTopoDS_TranslateVertexLoop.cxx
// Created: Tue Jan 3 15:41:27 1995
// Author: Frederic MAUPAS/Dieter THIEMANN
// <fma@stylox>
//: gka 09.04.99: S4136: eliminate BRepAPI::Precision()
#include <StepToTopoDS_TranslateVertexLoop.ixx>
#include <BRep_Builder.hxx>
//#include <BRepAPI.hxx>
#include <StepShape_Vertex.hxx>
#include <StepToTopoDS_TranslateVertex.hxx>
#include <TopoDS.hxx>
#include <TopoDS_Wire.hxx>
#include <TopoDS_Vertex.hxx>
#include <TopoDS_Edge.hxx>
#include <Transfer_TransientProcess.hxx>
// ============================================================================
// Method : StepToTopoDS_TranslateVertexLoop::StepToTopoDS_TranslateVertexLoop
// Purpose : Empty Constructor
// ============================================================================
StepToTopoDS_TranslateVertexLoop::StepToTopoDS_TranslateVertexLoop()
{
}
// ============================================================================
// Method : StepToTopoDS_TranslateVertexLoop::StepToTopoDS_TranslateVertexLoop
// Purpose : Constructor with a VertexLoop and a Tool
// ============================================================================
StepToTopoDS_TranslateVertexLoop::StepToTopoDS_TranslateVertexLoop(const Handle(StepShape_VertexLoop)& VL,
StepToTopoDS_Tool& T,
StepToTopoDS_NMTool& NMTool)
{
Init(VL, T, NMTool);
}
// ============================================================================
// Method : Init
// Purpose : Init with a VertexLoop and a Tool
// ============================================================================
void StepToTopoDS_TranslateVertexLoop::Init(const Handle(StepShape_VertexLoop)& VL,
StepToTopoDS_Tool& aTool,
StepToTopoDS_NMTool& NMTool)
{
// A Vertex Loop shall be mapped onto a Vertex + Edge + Wire;
if (!aTool.IsBound(VL)) {
BRep_Builder B;
Handle(Transfer_TransientProcess) TP = aTool.TransientProcess();
//:S4136 Standard_Real preci = BRepAPI::Precision();
Handle(StepShape_Vertex) Vtx;
TopoDS_Vertex V1,V2;
TopoDS_Edge E;
TopoDS_Wire W;
Vtx = VL->LoopVertex();
StepToTopoDS_TranslateVertex myTranVtx(Vtx, aTool, NMTool);
if (myTranVtx.IsDone()) {
V1 = TopoDS::Vertex(myTranVtx.Value());
V2 = TopoDS::Vertex(myTranVtx.Value());
}
else {
TP->AddWarning(VL,"VertexLoop not mapped to TopoDS ");
myError = StepToTopoDS_TranslateVertexLoopOther;
done = Standard_False;
return;
}
V1.Orientation(TopAbs_FORWARD);
V2.Orientation(TopAbs_REVERSED);
B.MakeEdge(E);
B.Add(E, V1);
B.Add(E, V2);
B.Degenerated(E, Standard_True);
B.MakeWire(W);
B.Add(W, E);
aTool.Bind(VL, W);
myResult = W;
myError = StepToTopoDS_TranslateVertexLoopDone;
done = Standard_True;
}
else {
myResult = TopoDS::Wire(aTool.Find(VL));
myError = StepToTopoDS_TranslateVertexLoopDone;
done = Standard_True;
}
}
// ============================================================================
// Method : Value
// Purpose : Return the mapped Shape
// ============================================================================
const TopoDS_Shape& StepToTopoDS_TranslateVertexLoop::Value() const
{
StdFail_NotDone_Raise_if(!done,"");
return myResult;
}
// ============================================================================
// Method : Error
// Purpose : Return the TranslateVertexLoop Error code
// ============================================================================
StepToTopoDS_TranslateVertexLoopError StepToTopoDS_TranslateVertexLoop::Error() const
{
return myError;
}
|