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
|
// File: TopOpeBRep_WPointInter.cxx
// Created: Wed Nov 10 18:55:48 1993
// Author: Jean Yves LEBEY
// <jyl@phobox>
#include <TopOpeBRep_WPointInter.ixx>
//=======================================================================
//function : WPointInter
//purpose :
//=======================================================================
TopOpeBRep_WPointInter::TopOpeBRep_WPointInter()
{}
//=======================================================================
//function : Set
//purpose :
//=======================================================================
void TopOpeBRep_WPointInter::Set(const IntSurf_PntOn2S& P)
{
myPP2S = (IntSurf_PntOn2S*)&P;
}
//=======================================================================
//function : ParametersOnS1
//purpose :
//=======================================================================
void TopOpeBRep_WPointInter::ParametersOnS1
(Standard_Real& U1, Standard_Real& V1) const
{
myPP2S->ParametersOnS1(U1,V1);
}
//=======================================================================
//function : ParametersOnS2
//purpose :
//=======================================================================
void TopOpeBRep_WPointInter::ParametersOnS2
(Standard_Real& U2, Standard_Real& V2) const
{
myPP2S->ParametersOnS2(U2,V2);
}
//=======================================================================
//function : Parameters
//purpose :
//=======================================================================
void TopOpeBRep_WPointInter::Parameters
(Standard_Real& U1, Standard_Real& V1,
Standard_Real& U2, Standard_Real& V2) const
{
myPP2S->Parameters(U1,V1,U2,V2);
}
//=======================================================================
//function : ValueOnS1
//purpose :
//=======================================================================
gp_Pnt2d TopOpeBRep_WPointInter::ValueOnS1() const
{
Standard_Real u,v;
myPP2S->ParametersOnS1(u,v);
return gp_Pnt2d(u,v);
}
//=======================================================================
//function : ValueOnS2
//purpose :
//=======================================================================
gp_Pnt2d TopOpeBRep_WPointInter::ValueOnS2() const
{
Standard_Real u,v;
myPP2S->ParametersOnS2(u,v);
return gp_Pnt2d(u,v);
}
//=======================================================================
//function : Value
//purpose :
//=======================================================================
const gp_Pnt& TopOpeBRep_WPointInter::Value() const
{
return myPP2S->Value();
}
TopOpeBRep_PPntOn2S TopOpeBRep_WPointInter::PPntOn2SDummy() const { return myPP2S; }
|