EgtGeomKernel 1.9f1 :

- inserita prima versione CollisionAvoiding per utensili toroidali.
This commit is contained in:
Dario Sassi
2018-06-18 15:23:39 +00:00
parent 095ab537a0
commit a38a277089
6 changed files with 851 additions and 480 deletions
+4 -4
View File
@@ -3664,7 +3664,7 @@ GdbExecutor::LineInfiniteCylinderInters( const STRVECTOR& vsParams)
return false ;
double dU1, dU2 ;
int nTypeInt = LineInfiniteCylinder( ptCyl, ptLine, vtCyl, vtLine, dRadius, dU1, dU2) ;
int nTypeInt = IntersLineInfiniteCylinder( ptLine, vtLine, ptCyl, vtCyl, dRadius, dU1, dU2) ;
Point3d ptPS = ptLine + dU1 * vtLine ;
Point3d ptPE = ptLine + dU2 * vtLine ;
@@ -3735,7 +3735,7 @@ GdbExecutor::RayInfiniteCylinderInters( const STRVECTOR& vsParams)
return false ;
double dU1, dU2 ;
int nTypeInt = LineInfiniteCylinder( ptCyl, ptLine, vtCyl, vtLine, dRadius, dU1, dU2) ;
int nTypeInt = IntersLineInfiniteCylinder( ptLine, vtLine, ptCyl, vtCyl, dRadius, dU1, dU2) ;
Point3d ptPS = ptLine + dU1 * vtLine ;
Point3d ptPE = ptLine + dU2 * vtLine ;
@@ -3810,7 +3810,7 @@ GdbExecutor::SegmentInfiniteCylinderInters( const STRVECTOR& vsParams)
return false ;
double dU1, dU2 ;
int nTypeInt = SegmentInfiniteCylinder( ptCyl, ptLine, vtCyl, vtLine, dRadius, dLen, dU1, dU2) ;
int nTypeInt = IntersSegmentInfiniteCylinder( ptLine, vtLine, dLen, ptCyl, vtCyl, dRadius, dU1, dU2) ;
Point3d ptPS = ptLine + dU1 * vtLine ;
Point3d ptPE = ptLine + dU2 * vtLine ;
@@ -3888,7 +3888,7 @@ GdbExecutor::SegmentCylinderInters( const STRVECTOR& vsParams)
return false ;
double dU1, dU2 ;
int nTypeInt = SegmentCylinder( ptCyl, ptLine, vtCyl, vtLine, dRadius, dHeigth, dLen, dU1, dU2) ;
int nTypeInt = IntersSegmentCylinder( ptLine, vtLine, dLen, ptCyl, vtCyl, dRadius, dHeigth, dU1, dU2) ;
Point3d ptPS = ptLine + dU1 * vtLine ;
Point3d ptPE = ptLine + dU2 * vtLine ;