Include :
- aggiornamento prototipi.
This commit is contained in:
@@ -48,6 +48,7 @@ class __declspec( novtable) ICurveComposite : public ICurve
|
||||
virtual bool AddJoint( double dU) = 0 ;
|
||||
virtual bool ModifyJoint( int nU, const Point3d& ptNewJoint) = 0 ;
|
||||
virtual bool RemoveJoint( int nU) = 0 ;
|
||||
virtual bool MoveCurve( int nCrv, const Vector3d& vtMove) = 0 ;
|
||||
virtual bool ModifyCurveToArc( int nCrv, const Point3d& ptMid) = 0 ;
|
||||
virtual bool ModifyCurveToLine( int nCrv) = 0 ;
|
||||
virtual bool ArcsToBezierCurves( void) = 0 ;
|
||||
|
||||
@@ -484,6 +484,9 @@ EIN_EXPORT BOOL __stdcall EgtAddCurveCompoJoint( int nId, double dU) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtModifyCurveCompoJoint( int nId, int nU, const double ptP[3], int nRefType) ;
|
||||
EIN_EXPORT int __stdcall EgtGetCurveCompoJointCount( int nId) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtRemoveCurveCompoJoint( int nId, int nU) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtMoveCurveCompoCurve( int nId, int nCrv, const double vtMove[3], int nRefType) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtModifyCurveCompoCurveToArc( int nId, int nCrv, const double ptP[3], int nRefType) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtModifyCurveCompoCurveToLine( int nId, int nCrv) ;
|
||||
EIN_EXPORT int __stdcall EgtExplodeCurveCompo( int nId, int* pnCount) ;
|
||||
EIN_EXPORT BOOL __stdcall EgtMergeCurvesInCurveCompo( int nId, double dLinTol, BOOL bStartEnd) ;
|
||||
|
||||
|
||||
@@ -523,6 +523,7 @@ EXE_EXPORT bool ExeAddCurveCompoJoint( int nId, double dU) ;
|
||||
EXE_EXPORT bool ExeModifyCurveCompoJoint( int nId, int nU, const Point3d& ptP, int nRefType) ;
|
||||
EXE_EXPORT int ExeGetCurveCompoJointCount( int nId) ;
|
||||
EXE_EXPORT bool ExeRemoveCurveCompoJoint( int nId, int nU) ;
|
||||
EXE_EXPORT bool ExeMoveCurveCompoCurve( int nId, int nCrv, const Vector3d& vtMove, int nRefType) ;
|
||||
EXE_EXPORT bool ExeModifyCurveCompoCurveToArc( int nId, int nCrv, const Point3d& ptMid, int nRefType) ;
|
||||
EXE_EXPORT bool ExeModifyCurveCompoCurveToLine( int nId, int nCrv) ;
|
||||
EXE_EXPORT int ExeExplodeCurveCompo( int nId, int* pnCount) ;
|
||||
|
||||
Reference in New Issue
Block a user