EgtInterface 1.6a4 :
- completamento modifiche per registrazione comandi in lua e per gestione RefType e RefId.
This commit is contained in:
@@ -24,90 +24,104 @@ ILogger* GetCmdLogger( void) ;
|
||||
bool IsCmdLog( void) ;
|
||||
|
||||
//--------------------------- General ----------------------------------------
|
||||
bool __stdcall EgtGetVersionInfo( std::string& sVer, const char* szNewLine) ;
|
||||
bool EgtGetVersionInfo( std::string& sVer, const char* szNewLine) ;
|
||||
|
||||
//--------------------------- GeomDB -----------------------------------------
|
||||
bool __stdcall EgtSetGridFrame( const Frame3d& frFrame) ;
|
||||
bool __stdcall EgtGetGridFrame( int nRefId, Frame3d& frFrame) ;
|
||||
bool __stdcall EgtGetGridVersZ( int nRefId, Vector3d& vtVersZ) ;
|
||||
bool __stdcall EgtOpenFile( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtImportFile( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtSaveFile( const std::string& sFilePath, int nFlag) ;
|
||||
bool EgtSetGridFrame( const Frame3d& frFrame) ;
|
||||
bool EgtGetGridFrame( int nRefId, Frame3d& frFrame) ;
|
||||
bool EgtGetGridVersZ( int nRefId, Vector3d& vtVersZ) ;
|
||||
bool EgtOpenFile( const std::string& sFilePath) ;
|
||||
bool EgtImportFile( const std::string& sFilePath) ;
|
||||
bool EgtSaveFile( const std::string& sFilePath, int nFlag) ;
|
||||
|
||||
//--------------------------- GeomDBCreate -----------------------------------
|
||||
int __stdcall EgtCreateText( int nParentId, const Point3d& ptP, double dAngRotDeg,
|
||||
const std::string& sText, double dH, int nRefType) ;
|
||||
int __stdcall EgtCreateTextEx( int nParentId, const Point3d& ptP, const Vector3d& vtN, const Vector3d& vtD,
|
||||
const std::string& sText, const std::string& sFont, bool bItalic, double dH, int nRefType) ;
|
||||
int __stdcall EgtCreateTextAdv( int nParentId, const Point3d& ptP, const Vector3d& vtN, const Vector3d& vtD,
|
||||
const std::string& sText, const std::string& sFont,
|
||||
int nW, bool bItalic, double dH, double dRat, double dAddAdv, int nInsPos, int nRefType) ;
|
||||
int EgtCreateText( int nParentId, const Point3d& ptP, double dAngRotDeg,
|
||||
const std::string& sText, double dH, int nRefType) ;
|
||||
int EgtCreateTextEx( int nParentId, const Point3d& ptP, const Vector3d& vtN, const Vector3d& vtD,
|
||||
const std::string& sText, const std::string& sFont, bool bItalic, double dH, int nRefType) ;
|
||||
int EgtCreateTextAdv( int nParentId, const Point3d& ptP, const Vector3d& vtN, const Vector3d& vtD,
|
||||
const std::string& sText, const std::string& sFont,
|
||||
int nW, bool bItalic, double dH, double dRat, double dAddAdv, int nInsPos, int nRefType) ;
|
||||
|
||||
//--------------------------- GeomDBCreateCurve ------------------------------
|
||||
int __stdcall EgtCreateCurveBezier( int nParentId, int nDegree, const PNTVECTOR& vPnt) ;
|
||||
int __stdcall EgtCreateCurveBezierRational( int nParentId, int nDegree, const PNTUVECTOR& vPntW) ;
|
||||
int __stdcall EgtCreateCurveCompo( int nParentId, const INTVECTOR& vIds, bool bErase) ;
|
||||
int __stdcall EgtCreateCurveCompoByChain( int nParentId, const INTVECTOR& vIds, const Point3d& ptNear, bool bErase) ;
|
||||
int __stdcall EgtCreateCurveCompoFromPoints( int nParentId, const PolyLine& PL) ;
|
||||
int __stdcall EgtCreateCurveCompoFromPointBulges( int nParentId, const PolyArc& PA) ;
|
||||
bool __stdcall GetPolyLineFromCurve( int nId, const Frame3d& frDest, double dLinTol, PolyLine& PL) ;
|
||||
bool __stdcall GetPolyArcFromCurve( int nId, const Frame3d& frDest, double dLinTol, PolyArc& PA) ;
|
||||
int EgtCreateCurveBezier( int nParentId, int nDegree, const PNTVECTOR& vPnt, int nRefType) ;
|
||||
int EgtCreateCurveBezierRational( int nParentId, int nDegree, const PNTUVECTOR& vPntW, int nRefType) ;
|
||||
int EgtCreateCurveCompo( int nParentId, const INTVECTOR& vIds, bool bErase) ;
|
||||
int EgtCreateCurveCompoByChain( int nParentId, const INTVECTOR& vIds,
|
||||
const Point3d& ptNear, bool bErase, int nRefType) ;
|
||||
int EgtCreateCurveCompoFromPoints( int nParentId, const PolyLine& PL, int nRefType) ;
|
||||
int EgtCreateCurveCompoFromPointBulges( int nParentId, const PolyArc& PA, int nRefType) ;
|
||||
bool GetPolyLineFromCurve( int nId, const Frame3d& frDest, double dLinTol, PolyLine& PL) ;
|
||||
bool GetPolyArcFromCurve( int nId, const Frame3d& frDest, double dLinTol, PolyArc& PA) ;
|
||||
|
||||
//--------------------------- GdbModify --------------------------------------
|
||||
BOOL __stdcall EgtModifyText( int nId, const std::string& sNewText) ;
|
||||
BOOL __stdcall EgtChangeTextFont( int nId, const std::string& sNewFont) ;
|
||||
bool EgtChangeGroupFrame( int nId, const Frame3d& frNewRef, int nRefType) ;
|
||||
bool EgtSurfTmDoSewing( const INTVECTOR& vIds, bool bErase) ;
|
||||
bool EgtModifyText( int nId, const std::string& sNewText) ;
|
||||
bool EgtChangeTextFont( int nId, const std::string& sNewFont) ;
|
||||
|
||||
//--------------------------- GdbModifyCurve ---------------------------------
|
||||
bool EgtModifyCurveExtrusion( INTVECTOR& vIds, const Vector3d& vtExtr, int nRefType) ;
|
||||
|
||||
//--------------------------- GdbObjects -------------------------------------
|
||||
int __stdcall EgtGetFirstNameInGroup( int nGroupId, const std::string& sName) ;
|
||||
int __stdcall EgtGetNextName( int nId, const std::string& sName) ;
|
||||
int EgtGetFirstNameInGroup( int nGroupId, const std::string& sName) ;
|
||||
int EgtGetNextName( int nId, const std::string& sName) ;
|
||||
|
||||
//--------------------------- GdbObjAttribs ----------------------------------
|
||||
bool __stdcall EgtSetName( int nId, const std::string& sName) ;
|
||||
bool __stdcall EgtGetName( int nId, std::string& sName) ;
|
||||
bool __stdcall EgtSetInfo( int nId, const std::string& sKey, const std::string& sInfo) ;
|
||||
bool __stdcall EgtSetInfo( int nId, const std::string& sKey, int nInfo) ;
|
||||
bool __stdcall EgtGetInfo( int nId, const std::string& sKey, std::string& sInfo) ;
|
||||
bool __stdcall EgtGetInfo( int nId, const std::string& sKey, int& nInfo) ;
|
||||
bool __stdcall EgtExistsInfo( int nId, const std::string& sKey) ;
|
||||
bool __stdcall EgtRemoveInfo( int nId, const std::string& sKey) ;
|
||||
bool EgtSetName( int nId, const std::string& sName) ;
|
||||
bool EgtGetName( int nId, std::string& sName) ;
|
||||
bool EgtSetInfo( int nId, const std::string& sKey, const std::string& sInfo) ;
|
||||
bool EgtSetInfo( int nId, const std::string& sKey, int nInfo) ;
|
||||
bool EgtGetInfo( int nId, const std::string& sKey, std::string& sInfo) ;
|
||||
bool EgtGetInfo( int nId, const std::string& sKey, int& nInfo) ;
|
||||
bool EgtExistsInfo( int nId, const std::string& sKey) ;
|
||||
bool EgtRemoveInfo( int nId, const std::string& sKey) ;
|
||||
|
||||
//--------------------------- GeoSnap ----------------------------------------
|
||||
bool __stdcall EgtStartPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtEndPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtMidPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtCenterPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtAtParamPoint( int nId, double dU, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtNearPoint( int nId, const Point3d& ptNear, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtIntersectionPoint( int nId1, int nId2, const Point3d& ptNear, int nRefId, Point3d& ptP) ;
|
||||
bool __stdcall EgtStartVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool __stdcall EgtEndVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool __stdcall EgtMidVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool __stdcall EgtAtParamVector( int nId, double dU, int nSide, int nRefId, Vector3d& vtV) ;
|
||||
bool __stdcall EgtFrame( int nId, int nRefId, Frame3d& frFrame) ;
|
||||
bool __stdcall EgtCurveExtrusion( int nId, int nRefId, Vector3d& vtExtr) ;
|
||||
bool EgtStartPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool EgtEndPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool EgtMidPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool EgtCenterPoint( int nId, int nRefId, Point3d& ptP) ;
|
||||
bool EgtAtParamPoint( int nId, double dU, int nRefId, Point3d& ptP) ;
|
||||
bool EgtNearPoint( int nId, const Point3d& ptNear, int nRefId, Point3d& ptP) ;
|
||||
bool EgtIntersectionPoint( int nId1, int nId2, const Point3d& ptNear, int nRefId, Point3d& ptP) ;
|
||||
bool EgtStartVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool EgtEndVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool EgtMidVector( int nId, int nRefId, Vector3d& vtV) ;
|
||||
bool EgtAtParamVector( int nId, double dU, int nSide, int nRefId, Vector3d& vtV) ;
|
||||
bool EgtFrame( int nId, int nRefId, Frame3d& frFrame) ;
|
||||
bool EgtCurveExtrusion( int nId, int nRefId, Vector3d& vtExtr) ;
|
||||
// EgtCurveThickness vedi EinAPI.h
|
||||
bool __stdcall EgtCurveArcNormVersor( int nId, int nRefId, Vector3d& vtNorm) ;
|
||||
bool __stdcall EgtExtTextNormVersor( int nId, int nRefId, Vector3d& vtNorm) ;
|
||||
bool __stdcall EgtPointToIdGlob( Point3d& ptP, int nId) ;
|
||||
bool __stdcall EgtPointToIdLoc( Point3d& ptP, int nId) ;
|
||||
bool __stdcall EgtVectorToIdGlob( Vector3d& vtV, int nId) ;
|
||||
bool __stdcall EgtVectorToIdLoc( Vector3d& vtV, int nId) ;
|
||||
bool EgtCurveArcNormVersor( int nId, int nRefId, Vector3d& vtNorm) ;
|
||||
bool EgtExtTextNormVersor( int nId, int nRefId, Vector3d& vtNorm) ;
|
||||
bool EgtPointToIdGlob( Point3d& ptP, int nId) ;
|
||||
bool EgtPointToIdLoc( Point3d& ptP, int nId) ;
|
||||
bool EgtVectorToIdGlob( Vector3d& vtV, int nId) ;
|
||||
bool EgtVectorToIdLoc( Vector3d& vtV, int nId) ;
|
||||
|
||||
//--------------------------- GeoTransform -----------------------------------
|
||||
bool EgtMove( INTVECTOR& vIds, const Vector3d& vtMove, int nRefType) ;
|
||||
bool EgtRotate( INTVECTOR& vIds, const Point3d& ptAx, const Vector3d& vtAx, double dAngRotDeg, int nRefType) ;
|
||||
bool EgtScale( INTVECTOR& vIds, const Frame3d& frRef, double dCoeffX, double dCoeffY, double dCoeffZ, int nRefType) ;
|
||||
bool EgtMirror( INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN, int nRefType) ;
|
||||
bool EgtShear( INTVECTOR& vIds, const Point3d& ptP, const Vector3d& vtN,
|
||||
const Vector3d& vtDir, double dCoeff, int nRefType) ;
|
||||
|
||||
//--------------------------- Scene ------------------------------------------
|
||||
bool __stdcall EgtSetBackground( Color TopCol, Color BottomCol, bool bRedraw) ;
|
||||
bool __stdcall EgtSetMarkAttribs( Color MarkCol) ;
|
||||
bool __stdcall EgtSetSelSurfAttribs( Color SelSurfCol) ;
|
||||
bool __stdcall EgtSetGeoLineAttribs( Color GlCol) ;
|
||||
bool __stdcall EgtSetGeoTriaAttribs( Color GtCol) ;
|
||||
bool __stdcall EgtSetWinRectAttribs( bool bOutline, Color WrCol) ;
|
||||
bool EgtSetBackground( Color TopCol, Color BottomCol, bool bRedraw) ;
|
||||
bool EgtSetMarkAttribs( Color MarkCol) ;
|
||||
bool EgtSetSelSurfAttribs( Color SelSurfCol) ;
|
||||
bool EgtSetGeoLineAttribs( Color GlCol) ;
|
||||
bool EgtSetGeoTriaAttribs( Color GtCol) ;
|
||||
bool EgtSetWinRectAttribs( bool bOutline, Color WrCol) ;
|
||||
|
||||
//--------------------------- Exchange ---------------------------------------
|
||||
int __stdcall EgtGetFileType( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtImportDxf( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtImportStl( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtImportCnc( const std::string& sFilePath) ;
|
||||
bool __stdcall EgtExportDxf( int nId, const std::string& sFilePath) ;
|
||||
bool __stdcall EgtExportStl( int nId, const std::string& sFilePath) ;
|
||||
int EgtGetFileType( const std::string& sFilePath) ;
|
||||
bool EgtImportDxf( const std::string& sFilePath) ;
|
||||
bool EgtImportStl( const std::string& sFilePath) ;
|
||||
bool EgtImportCnc( const std::string& sFilePath) ;
|
||||
bool EgtExportDxf( int nId, const std::string& sFilePath) ;
|
||||
bool EgtExportStl( int nId, const std::string& sFilePath) ;
|
||||
|
||||
//--------------------------- TscExec ----------------------------------------
|
||||
bool __stdcall EgtTscExecFile( const std::string& sFilePath) ;
|
||||
bool EgtTscExecFile( const std::string& sFilePath) ;
|
||||
|
||||
Reference in New Issue
Block a user