1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-18 14:27:39 +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

View File

@@ -0,0 +1,49 @@
// File: Geom2dAdaptor_Curve.lxx
// Created: Fri Jun 4 11:03:44 1993
// Author: Bruno DUMORTIER
// <dub@topsn3>
#include <gp_Pnt2d.hxx>
#include <Geom2d_Curve.hxx>
//=======================================================================
//function : FirstParameter
//purpose :
//=======================================================================
inline Standard_Real Geom2dAdaptor_Curve::FirstParameter() const
{
return myFirst;
}
//=======================================================================
//function : LastParameter
//purpose :
//=======================================================================
inline Standard_Real Geom2dAdaptor_Curve::LastParameter() const
{
return myLast;
}
//=======================================================================
//function : Curve
//purpose :
//=======================================================================
inline const Handle(Geom2d_Curve)& Geom2dAdaptor_Curve::Curve() const
{
return myCurve;
}
//=======================================================================
//function : GetType
//purpose :
//=======================================================================
inline GeomAbs_CurveType Geom2dAdaptor_Curve::GetType() const
{
return myTypeCurve;
}