EgtInterface 1.5j5 :

- aggiunte funzioni di trasformazione elementi geometrici base (Point, Vector, Frame).
This commit is contained in:
Dario Sassi
2014-10-20 14:02:10 +00:00
parent 46c5fce044
commit 4b52489cf8
11 changed files with 478 additions and 37 deletions
+2 -2
View File
@@ -47,7 +47,7 @@ __stdcall EgtModifyCurveStartPoint( int nId, const double ptP[3])
if ( pCurve == nullptr)
return false ;
// ne modifico il punto iniziale
return ( pCurve->ModifyStart( Point3d( ptP)) ? TRUE : FALSE) ;
return ( pCurve->ModifyStart( ptP) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------
@@ -61,7 +61,7 @@ __stdcall EgtModifyCurveEndPoint( int nId, const double ptP[3])
if ( pCurve == nullptr)
return false ;
// ne modifico il punto finale
return ( pCurve->ModifyEnd( Point3d( ptP)) ? TRUE : FALSE) ;
return ( pCurve->ModifyEnd( ptP) ? TRUE : FALSE) ;
}
//----------------------------------------------------------------------------