started to fix the disparity of 2/3d bash qhull stuff

This commit is contained in:
Stephen McQuay 2011-03-21 17:27:12 -06:00
parent 2796eaeed8
commit d01dcf4efc
1 changed files with 2 additions and 1 deletions

View File

@ -152,7 +152,8 @@ class grid(object):
r = '%d\n' % len(self.verts[0])
r += '%d\n' % len(self.verts)
for p in self.verts:
r += "%f %f %f\n" % tuple(p)
# r += "%f %f %f\n" % tuple(p)
r += "%s\n" % " ".join("%f" % i for i in p)
return r
def __str__(self):