1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-08 14:17:06 +03:00

Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

33
src/BRep/BRep_GCurve.cxx Executable file
View File

@@ -0,0 +1,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()
{
}