Integration of OCCT 6.5.0 from SVN
[occt.git] / src / BRep / BRep_CurveOnSurface.lxx
CommitLineData
7fd59977 1// File: BRep_CurveOnSurface.lxx
2// Created: Thu Nov 18 12:19:53 1993
3// Author: Remi LEQUETTE
4// <rle@phylox>
5
6
7//=======================================================================
8//function : SetUVPoints
9//purpose :
10//=======================================================================
11
12inline void BRep_CurveOnSurface::SetUVPoints(const gp_Pnt2d& P1,
13 const gp_Pnt2d& P2)
14{
15 myUV1 = P1;
16 myUV2 = P2;
17}
18
19
20//=======================================================================
21//function : UVPoints
22//purpose :
23//=======================================================================
24
25inline void BRep_CurveOnSurface::UVPoints(gp_Pnt2d& P1,
26 gp_Pnt2d& P2)const
27{
28 P1 = myUV1;
29 P2 = myUV2;
30}