From e2dfebc909e3036f7a566b9c00c890beec107287 Mon Sep 17 00:00:00 2001 From: ponchio Date: Sun, 18 Nov 2007 19:12:54 +0000 Subject: [PATCH] Typo (missing comma). --- vcg/space/triangle3.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/vcg/space/triangle3.h b/vcg/space/triangle3.h index e083a7d5..78559662 100644 --- a/vcg/space/triangle3.h +++ b/vcg/space/triangle3.h @@ -24,6 +24,10 @@ History $Log: not supported by cvs2svn $ +Revision 1.17 2007/11/16 14:22:35 ponchio +Added qualityRadii: computes inradius /circumradius. +(ok the name is ugly...) + Revision 1.16 2007/10/10 15:11:30 ponchio Added Circumcenter function. @@ -273,7 +277,7 @@ P3ScalarType Quality( Point3 const &p0, Point3 const /// e.g. Equilateral triangle 1, halfsquare: 1/2, ... up to a line that has zero quality. template P3ScalarType QualityRadii(Point3 const &p0, - Point3 const &p1 + Point3 const &p1, Point3 const &p2) { P3ScalarType a=(p1-p0).Norm();