Include :

- aggiornati prototipi.
This commit is contained in:
Dario Sassi
2018-05-02 05:12:12 +00:00
parent 40f1d27e8b
commit 083b45152e
3 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -30,8 +30,8 @@ class __declspec( novtable) ICAvToolSurfTm {
virtual bool SetSurfTm( const ISurfTriMesh& Stm) = 0 ;
virtual bool SetMoveDir( const Vector3d& vtMove) = 0 ;
virtual bool SetStdTool( double dH, double dR, double dCornR) = 0 ;
virtual double TestPosition( const Point3d& ptT, const Vector3d& vtDir) = 0 ;
// TestPath
virtual bool TestPosition( const Point3d& ptT, const Vector3d& vtDir, double& dTotDist) = 0 ;
virtual bool TestPath( PNTULIST& lPntM, const Vector3d& vtDir, double dLinTol) = 0 ;
} ;
//-----------------------------------------------------------------------------
+2
View File
@@ -97,6 +97,8 @@ class PolyLine
{ return GetLastULine( nullptr, &ptIni, nullptr, &ptFin) ; }
EGK_EXPORT bool GetPrevLine( Point3d& ptIni, Point3d& ptFin) const
{ return GetPrevULine( nullptr, &ptIni, nullptr, &ptFin) ; }
EGK_EXPORT PNTULIST& GetUPointList( void)
{ return m_lUPoints ; }
EGK_EXPORT bool IsFlat( int& nRank, Point3d& ptCen, Vector3d& vtDir, double dToler = EPS_SMALL) const ;
EGK_EXPORT bool IsClosedAndFlat( Plane3d& plPlane, double& dArea, double dToler = EPS_SMALL) const ;
EGK_EXPORT bool GetApproxLength( double& dLen) const ;
+3 -2
View File
@@ -613,8 +613,9 @@ EXE_EXPORT bool ExeVerifyMachining( int nMchId, int& nResult) ;
EXE_EXPORT int ExeVerifyCutAsSplitting( int nMchId) ;
// Collision Avoidance Tool SurfaceTriMesh
EXE_EXPORT double ExeCAvToolStmPosition( double dToolLen, double dToolDiam, double dToolCornR, int nSurfTmId,
const Point3d& ptP, const Vector3d& vtAx, const Vector3d& vtMove, int nRefType) ;
EXE_EXPORT bool ExeCAvSetStdTool( double dToolLen, double dToolDiam, double dToolCornR) ;
EXE_EXPORT double ExeCAvToolPosStm( const Point3d& ptP, const Vector3d& vtAx, int nSurfTmId, const Vector3d& vtMove, int nRefType) ;
EXE_EXPORT bool ExeCAvToolPathStm( int nCrvId, const Vector3d& vtAx, int nSurfTmId, const Vector3d& vtMove, double dLinTol, int nRefType) ;
// Machining
EXE_EXPORT bool ExeInitMachMgr( const std::string& sMachinesDir) ;