diff --git a/EInAPI.h b/EInAPI.h index a09a8dc..b4c7a80 100644 --- a/EInAPI.h +++ b/EInAPI.h @@ -466,6 +466,7 @@ EIN_EXPORT BOOL __stdcall EgtSurfTmFacetNearestMidPoint( int nId, int nFacet, co EIN_EXPORT BOOL __stdcall EgtSurfTmFacetCenter( int nId, int nFacet, int nRefId, double ptCen[3], double vtNorm[3]) ; EIN_EXPORT BOOL __stdcall EgtSurfTmFacetNormVersor( int nId, int nFacet, int nRefId, double vtNorm[3]) ; EIN_EXPORT BOOL __stdcall EgtTextNormVersor( int nId, int nRefId, double vtNorm[3]) ; +EIN_EXPORT BOOL __stdcall EgtTextGetContent( int nId, wchar_t*& wsText) ; EIN_EXPORT BOOL __stdcall EgtPointToIdGlob( double ptP[3], int nId) ; EIN_EXPORT BOOL __stdcall EgtPointToIdLoc( double ptP[3], int nId) ; EIN_EXPORT BOOL __stdcall EgtVectorToIdGlob( double vtV[3], int nId) ; diff --git a/EXeExecutor.h b/EXeExecutor.h index ddc1556..d87da63 100644 --- a/EXeExecutor.h +++ b/EXeExecutor.h @@ -510,6 +510,7 @@ EXE_EXPORT bool ExeSurfTmFacetNearestMidPoint( int nId, int nFacet, const Point3 EXE_EXPORT bool ExeSurfTmFacetCenter( int nId, int nFacet, int nRefId, Point3d& ptCen, Vector3d& vtN) ; EXE_EXPORT bool ExeSurfTmFacetNormVersor( int nId, int nFacet, int nRefId, Vector3d& vtNorm) ; EXE_EXPORT bool ExeTextNormVersor( int nId, int nRefId, Vector3d& vtNorm) ; +EXE_EXPORT bool ExeTextGetContent( int nId, std::string& sText) ; EXE_EXPORT bool ExePointToIdGlob( Point3d& ptP, int nId) ; EXE_EXPORT bool ExePointToIdLoc( Point3d& ptP, int nId) ; EXE_EXPORT bool ExeVectorToIdGlob( Vector3d& vtV, int nId) ;