summaryrefslogtreecommitdiff
path: root/src/IntSurf/IntSurf_InteriorPoint.cxx
blob: ba35e80ecebb2f34ff173476f9aef1742b336040 (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
#include <IntSurf_InteriorPoint.ixx>


IntSurf_InteriorPoint::IntSurf_InteriorPoint () {}


IntSurf_InteriorPoint::IntSurf_InteriorPoint (const gp_Pnt& P,
					      const Standard_Real U,
					      const Standard_Real V,
					      const gp_Vec& Direc,
					      const gp_Vec2d& Direc2d):
  point(P),paramu(U),paramv(V),direc(Direc),direc2d(Direc2d)

{}

void IntSurf_InteriorPoint::SetValue (const gp_Pnt& P,
				      const Standard_Real U,
				      const Standard_Real V,
				      const gp_Vec& Direc,
				      const gp_Vec2d& Direc2d) {

  point   = P;
  paramu  = U;
  paramv  = V;
  direc   = Direc;
  direc2d = Direc2d;
}