From 455f849664089194d5b94616faea3c9009fa1cb0 Mon Sep 17 00:00:00 2001 From: Hans-Christoph Steiner Date: Sat, 4 Feb 2012 23:06:54 +0000 Subject: print version message using verbose(0) svn path=/trunk/externals/boids/; revision=15945 --- boids2d.c | 4 ++-- boids3d.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/boids2d.c b/boids2d.c index 520a3ae..d91bbce 100644 --- a/boids2d.c +++ b/boids2d.c @@ -177,7 +177,7 @@ void boids2d_setup(void) class_addmethod(boids2d_class, (t_method) Flock_reset, gensym("init"), 0); class_addmethod(boids2d_class, (t_method) Flock_dump, gensym("dump"), 0); - post("boids2d 2005-2006 a.sier / jasch 1995-2003 eric l. singer "__DATE__" "__TIME__); + verbose(0, "boids2d 2005-2006 a.sier / jasch 1995-2003 eric l. singer "__DATE__" "__TIME__); ps_nothing = gensym(""); } @@ -959,4 +959,4 @@ double DistSqrToPt(Point2d firstPoint, Point2d secondPoint) b = firstPoint.y - secondPoint.y; //c = firstPoint.z - secondPoint.z; return(a * a + b * b); // + c * c); -} \ No newline at end of file +} diff --git a/boids3d.c b/boids3d.c index f8dd975..7cad3c1 100644 --- a/boids3d.c +++ b/boids3d.c @@ -175,7 +175,7 @@ void boids3d_setup(void) class_addmethod(boids3d_class, (t_method) Flock_reset, gensym("init"), 0); class_addmethod(boids3d_class, (t_method) Flock_dump, gensym("dump"), 0); - post("boids3d 2005-2006 a.sier / jasch © 1995-2003 eric l. singer "__DATE__" "__TIME__); + verbose(0, "boids3d 2005-2006 a.sier / jasch © 1995-2003 eric l. singer "__DATE__" "__TIME__); ps_nothing = gensym(""); } @@ -953,4 +953,4 @@ double DistSqrToPt(Point3d firstPoint, Point3d secondPoint) b = firstPoint.y - secondPoint.y; c = firstPoint.z - secondPoint.z; return(a * a + b * b + c * c); -} \ No newline at end of file +} -- cgit v1.2.1