summaryrefslogtreecommitdiff
path: root/inc/Extrema_Point.gxx
blob: daef4921a1fdcffc3d1eee89fc5bad6396081bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

Extrema_Point::Extrema_Point () { }


Extrema_Point::Extrema_Point (const Standard_Real U, const Pnt& P)
{
  myU = U;
  myP = P;
}

void Extrema_Point::SetValues(const Standard_Real U, const Pnt& P)
{
  myU = U;
  myP = P;
}