From b51468f0d74afb0b3cf40142c58a317cb7ad4e6f Mon Sep 17 00:00:00 2001 From: Dario Sassi Date: Thu, 9 May 2019 06:29:07 +0000 Subject: [PATCH] Include : - aggiornamento prototipi. --- EInAPI.h | 1 + EXeExecutor.h | 1 + 2 files changed, 2 insertions(+) diff --git a/EInAPI.h b/EInAPI.h index 1e57d7a..1126421 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -421,6 +421,7 @@ EIN_EXPORT BOOL __stdcall EgtAddCurveCompoCurve( int nId, int nAddCrvId, BOOL bE EIN_EXPORT BOOL __stdcall EgtAddCurveCompoLine( int nId, const double ptP[3], int nRefType) ; EIN_EXPORT BOOL __stdcall EgtAddCurveCompoArcTg( int nId, const double ptP[3], int nRefType) ; EIN_EXPORT BOOL __stdcall EgtAddCurveCompoArc2P( int nId, const double ptMid[3], const double ptP[3], int nRefType) ; +EIN_EXPORT BOOL __stdcall EgtRemoveCurveCompoCurve( int nId, BOOL bLast) ; 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) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index b5d7510..7d0b0a5 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -460,6 +460,7 @@ EXE_EXPORT bool ExeAddCurveCompoCurve( int nId, int nAddCrvId, bool bEraseOrig) EXE_EXPORT bool ExeAddCurveCompoLine( int nId, const Point3d& ptP, int nRefType) ; EXE_EXPORT bool ExeAddCurveCompoArcTg( int nId, const Point3d& ptP, int nRefType) ; EXE_EXPORT bool ExeAddCurveCompoArc2P( int nId, const Point3d& ptMid, const Point3d& ptP, int nRefType) ; +EXE_EXPORT bool ExeRemoveCurveCompoCurve( int nId, bool bLast) ; 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) ;