minor changes in SphereOfTetra()

This commit is contained in:
Paolo Cignoni 2006-07-10 10:38:16 +00:00
parent eae0930e15
commit 12e55110da
1 changed files with 4 additions and 1 deletions

View File

@ -25,6 +25,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.1 2006/07/06 12:37:18 ganovelli
draft version. For the triangle is not tehe smallest enclosing sphere and for the set of spheres works only for two spheres
****************************************************************************/
@ -65,7 +68,7 @@ static SmallestEnclosing::SphereOfTriangle(const TriangleType & t){
template <class TetraType>
Sphere3<typename TetraType::ScalarType>
static SmallestEnclosing::SphereOfTetra(const TetraType & t){
return Sphere3<typename TetraType::ScalarType>( Barycenter(t),( Barycenter(t)-t.cP(0)).Norm() );
return Sphere3<typename TetraType::ScalarType>( t.Barycenter(),( t.Barycenter() - t.cP(0) ).Norm() );
}
template <class SphereContType>