EgtGeomKernel 1.6g1 :

- aggiunte HashGrids 2d e 3d
- aggiunta intersezione con curve di Bezier e con archi fuori piano XY.
This commit is contained in:
Dario Sassi
2015-07-05 17:54:12 +00:00
parent b8bf9b2f21
commit afec3ef6ce
11 changed files with 2062 additions and 243 deletions
+10
View File
@@ -187,6 +187,16 @@ BBox3d::GetRadius( double& dRad) const
return true ;
}
//----------------------------------------------------------------------------
bool
BBox3d::GetDiameter( double& dDiam) const
{
if ( ! IsValid())
return false ;
dDiam = ( m_ptMax - m_ptMin).Len() ;
return true ;
}
//----------------------------------------------------------------------------
void
BBox3d::Translate( const Vector3d& vtMove)