blob: 2e3329e5e59feca1c1c2e3aea7b1edc87f4661dc (
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
31
32
33
|
// File: BRep_GCurve.cxx
// Created: Wed Mar 15 13:43:10 1995
// Author: Laurent PAINNOT
// <lpa@metrox>
#include <BRep_GCurve.ixx>
//=======================================================================
//function : BRep_GCurve
//purpose :
//=======================================================================
BRep_GCurve::BRep_GCurve(const TopLoc_Location& L,
const Standard_Real First,
const Standard_Real Last):
BRep_CurveRepresentation(L),
myFirst(First),
myLast(Last)
{
}
//=======================================================================
//function : Update
//purpose :
//=======================================================================
void BRep_GCurve::Update()
{
}
|