This commit is contained in:
eap 2013-06-17 12:50:10 +00:00
parent e86fadf71e
commit 4211dca375
2 changed files with 8 additions and 8 deletions

View File

@ -194,7 +194,7 @@ Handle(GEOM_Object) GEOMImpl_IBasicOperations::makePointOnGeom
double theParam2,
double theParam3,
const PointLocation theLocation,
Handle(GEOM_Object) theRefPoint)
Handle(GEOM_Object) theRefPoint)
{
SetErrorCode(KO);
@ -347,8 +347,8 @@ Handle(GEOM_Object) GEOMImpl_IBasicOperations::MakePointOnCurveByCoord
//=============================================================================
Handle(GEOM_Object) GEOMImpl_IBasicOperations::MakePointOnCurveByLength
(Handle(GEOM_Object) theCurve,
double theLength,
Handle(GEOM_Object) theStartPoint)
double theLength,
Handle(GEOM_Object) theStartPoint)
{
return makePointOnGeom(theCurve, theLength, 0.0, 0.0, PointOn_CurveByLength, theStartPoint);
}

View File

@ -44,8 +44,8 @@ class GEOMImpl_IBasicOperations : public GEOM_IOperations {
double theParameter);
Standard_EXPORT Handle(GEOM_Object) MakePointOnCurveByLength (Handle(GEOM_Object) theCurve,
double theLength,
Handle(GEOM_Object) theStartPoint);
double theLength,
Handle(GEOM_Object) theStartPoint);
Standard_EXPORT Handle(GEOM_Object) MakePointOnCurveByCoord (Handle(GEOM_Object) theCurve,
double theXParam,
@ -139,7 +139,7 @@ class GEOMImpl_IBasicOperations : public GEOM_IOperations {
double theParam2,
double theParam3,
const PointLocation theLocation,
Handle(GEOM_Object) theRefPoint = 0);
Handle(GEOM_Object) theRefPoint = 0);
};
#endif