blob: 4b270a5b04164f18da9e6d076aa436d10a4ebf63 (
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
|
// File: BRep_CurveOnSurface.lxx
// Created: Thu Nov 18 12:19:53 1993
// Author: Remi LEQUETTE
// <rle@phylox>
//=======================================================================
//function : SetUVPoints
//purpose :
//=======================================================================
inline void BRep_CurveOnSurface::SetUVPoints(const gp_Pnt2d& P1,
const gp_Pnt2d& P2)
{
myUV1 = P1;
myUV2 = P2;
}
//=======================================================================
//function : UVPoints
//purpose :
//=======================================================================
inline void BRep_CurveOnSurface::UVPoints(gp_Pnt2d& P1,
gp_Pnt2d& P2)const
{
P1 = myUV1;
P2 = myUV2;
}
|