summaryrefslogtreecommitdiff
path: root/src/BRepFill/BRepFill_MultiLineTool.cxx
blob: b5928f1dbc40be75eac843dcad323df821310e75 (plain)
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
// File:	BRepFill_MultiLineTool.cxx
// Created:	Mon Nov 14 15:24:57 1994
// Author:	Bruno DUMORTIER
//		<dub@fuegox>


#include <BRepFill_MultiLineTool.ixx>


#include <gp_Pnt.hxx>
#include <gp_Pnt2d.hxx>

//=======================================================================
//function : FirstParameter
//purpose  : 
//=======================================================================

Standard_Real BRepFill_MultiLineTool::FirstParameter
(const BRepFill_MultiLine& ML)
{
  return ML.FirstParameter();
}


//=======================================================================
//function : LastParameter
//purpose  : 
//=======================================================================

Standard_Real BRepFill_MultiLineTool::LastParameter
(const BRepFill_MultiLine& ML)
{
  return ML.LastParameter();
}


//=======================================================================
//function : NbP2d
//purpose  : 
//=======================================================================

Standard_Integer BRepFill_MultiLineTool::NbP2d
(const BRepFill_MultiLine&)
{
  return 2;
}


//=======================================================================
//function : NbP3d
//purpose  : 
//=======================================================================

Standard_Integer BRepFill_MultiLineTool::NbP3d(const BRepFill_MultiLine&)
{
  return 1;
}


//=======================================================================
//function : Value
//purpose  : 
//=======================================================================

void BRepFill_MultiLineTool::Value(const BRepFill_MultiLine& , 
				   const Standard_Real, 
				   TColgp_Array1OfPnt&)
{
}


//=======================================================================
//function : Value
//purpose  : 
//=======================================================================

void BRepFill_MultiLineTool::Value(const BRepFill_MultiLine&, 
				   const Standard_Real, 
				   TColgp_Array1OfPnt2d&)
{
}


//=======================================================================
//function : Value
//purpose  : 
//=======================================================================

void BRepFill_MultiLineTool::Value(const BRepFill_MultiLine& ML, 
				   const Standard_Real U,
				   TColgp_Array1OfPnt& tabPt,
				   TColgp_Array1OfPnt2d& tabPt2d)
{
  tabPt(1)   = ML.Value(U);
  tabPt2d(1) = ML.ValueOnF1(U);
  tabPt2d(2) = ML.ValueOnF2(U);
}


//=======================================================================
//function : D1
//purpose  : 
//=======================================================================

Standard_Boolean BRepFill_MultiLineTool::D1(const BRepFill_MultiLine&,
					    const Standard_Real,
					    TColgp_Array1OfVec&)
{
  return Standard_False;
}


//=======================================================================
//function : D1
//purpose  : 
//=======================================================================

Standard_Boolean BRepFill_MultiLineTool::D1(const BRepFill_MultiLine&,
					    const Standard_Real,
					    TColgp_Array1OfVec2d&)
{
  return Standard_False;
}


//=======================================================================
//function : D1
//purpose  : 
//=======================================================================

Standard_Boolean BRepFill_MultiLineTool::D1(const BRepFill_MultiLine&,
					    const Standard_Real,
					    TColgp_Array1OfVec&,
					    TColgp_Array1OfVec2d&)
{
  return Standard_False;
}