0024428: Implementation of LGPL license
[occt.git] / src / BRep / BRep_CurveOnSurface.lxx
... / ...
CommitLineData
1// Created on: 1993-11-18
2// Created by: Remi LEQUETTE
3// Copyright (c) 1993-1999 Matra Datavision
4// Copyright (c) 1999-2014 OPEN CASCADE SAS
5//
6// This file is part of Open CASCADE Technology software library.
7//
8// This library is free software; you can redistribute it and / or modify it
9// under the terms of the GNU Lesser General Public version 2.1 as published
10// by the Free Software Foundation, with special exception defined in the file
11// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
12// distribution for complete text of the license and disclaimer of any warranty.
13//
14// Alternatively, this file may be used under the terms of Open CASCADE
15// commercial license or contractual agreement.
16
17//=======================================================================
18//function : SetUVPoints
19//purpose :
20//=======================================================================
21
22inline void BRep_CurveOnSurface::SetUVPoints(const gp_Pnt2d& P1,
23 const gp_Pnt2d& P2)
24{
25 myUV1 = P1;
26 myUV2 = P2;
27}
28
29
30//=======================================================================
31//function : UVPoints
32//purpose :
33//=======================================================================
34
35inline void BRep_CurveOnSurface::UVPoints(gp_Pnt2d& P1,
36 gp_Pnt2d& P2)const
37{
38 P1 = myUV1;
39 P2 = myUV2;
40}