0033661: Data Exchange, Step Import - Tessellated GDTs are not imported
[occt.git] / src / IntSurf / IntSurf_InteriorPoint.cxx
CommitLineData
b311480e 1// Copyright (c) 1995-1999 Matra Datavision
973c2be1 2// Copyright (c) 1999-2014 OPEN CASCADE SAS
b311480e 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
b311480e 5//
d5f74e42 6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
b311480e 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
b311480e 14
7fd59977 15
42cf5bc1 16#include <gp_Vec.hxx>
17#include <gp_Vec2d.hxx>
18#include <IntSurf_InteriorPoint.hxx>
7fd59977 19
d533dafb 20IntSurf_InteriorPoint::IntSurf_InteriorPoint ()
21: paramu(0.0),
22 paramv(0.0)
23{
24}
7fd59977 25
26
27IntSurf_InteriorPoint::IntSurf_InteriorPoint (const gp_Pnt& P,
28 const Standard_Real U,
29 const Standard_Real V,
30 const gp_Vec& Direc,
31 const gp_Vec2d& Direc2d):
32 point(P),paramu(U),paramv(V),direc(Direc),direc2d(Direc2d)
33
34{}
35
36void IntSurf_InteriorPoint::SetValue (const gp_Pnt& P,
37 const Standard_Real U,
38 const Standard_Real V,
39 const gp_Vec& Direc,
40 const gp_Vec2d& Direc2d) {
41
42 point = P;
43 paramu = U;
44 paramv = V;
45 direc = Direc;
46 direc2d = Direc2d;
47}
48
49
50