added definition of min function

This commit is contained in:
Nico Pietroni 2005-09-14 09:03:54 +00:00
parent f170dc4a13
commit f5b0b9f8f2
1 changed files with 4 additions and 0 deletions

View File

@ -24,6 +24,9 @@
History
$Log: not supported by cvs2svn $
Revision 1.5 2005/02/02 16:44:34 pietroni
1 warning corrected added casting in const ScalarType EPSILON = ScalarType( 0.000001);
Revision 1.4 2005/01/28 12:00:33 cignoni
small gcc compiling issues for namespaces
@ -42,6 +45,7 @@ created
#ifndef __VCGLIB_FACE_DISTANCE
#define __VCGLIB_FACE_DISTANCE
#define min(a,b)(((a)<(b))?(a):(b))
#include <vcg/space/point3.h>