From 6d6ea8c4c95e06ef586a3356d989ffccb805b115 Mon Sep 17 00:00:00 2001 From: Andreas Schenk <andreas_schenk@hms.harvard.edu> Date: Thu, 7 Jun 2012 09:45:56 -0400 Subject: [PATCH] another pytho fixed --- modules/geom/src/vec3.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/geom/src/vec3.cc b/modules/geom/src/vec3.cc index 6e657081f..8480aac85 100644 --- a/modules/geom/src/vec3.cc +++ b/modules/geom/src/vec3.cc @@ -105,7 +105,7 @@ Line3 Vec3List::FitCylinder(const Vec3& initial_direction, const Vec3& center) c } unsigned long k=0; err=2.0*prec; - while (err>prec and k<n_step) { + while (err>prec && k<n_step) { res_sum_old=res_sum; axis_old=axis; radius=0.0; -- GitLab