EgtGeomKernel 1.9f1 :
- inserita prima versione CollisionAvoiding per utensili toroidali.
This commit is contained in:
+4
-4
@@ -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 ;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user