0022627: Change OCCT memory management defaults
[occt.git] / src / BRep / BRep_CurveOnClosedSurface.lxx
CommitLineData
7fd59977 1// File: BRep_CurveOnClosedSurface.lxx
2// Created: Thu Nov 18 12:20:00 1993
3// Author: Remi LEQUETTE
4// <rle@phylox>
5
6//=======================================================================
7//function : SetUVPoints2
8//purpose :
9//=======================================================================
10
11inline void BRep_CurveOnClosedSurface::SetUVPoints2(const gp_Pnt2d& P1,
12 const gp_Pnt2d& P2)
13{
14 myUV21 = P1;
15 myUV22 = P2;
16}
17
18
19//=======================================================================
20//function : UVPoints2
21//purpose :
22//=======================================================================
23
24inline void BRep_CurveOnClosedSurface::UVPoints2(gp_Pnt2d& P1,
25 gp_Pnt2d& P2)const
26{
27 P1 = myUV21;
28 P2 = myUV22;
29}