From ab22d6dd41d6f2df91de2e27f8fd7a32a289ce0c Mon Sep 17 00:00:00 2001 From: Johann Dreo Date: Wed, 21 May 2014 11:25:05 +0200 Subject: [PATCH] do not compute the convex hull --- run_all.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/run_all.py b/run_all.py index b13b948..4f2d017 100755 --- a/run_all.py +++ b/run_all.py @@ -10,6 +10,7 @@ from itertools import ifilterfalse as filter_if_not import ants import utils from utils import LOG,LOGN +from geometry import x,y import hull import uberplot import shortpath @@ -153,11 +154,11 @@ else: points = utils.vertices_of(penrose_segments) triangles = triangulation.delaunay_bowyer_watson( points, do_plot = False ) - LOGN( "\tCompute the convex hull of",len(points),"points" ) - # Should convert the set into a list - hull = hull.convex_hull( list(points) ) - hull_edges = list(utils.tour(hull)) - LOGN( "\t\tHull of",len(hull_edges),"edges" ) + # LOGN( "\tCompute the convex hull of",len(points),"points" ) + # # Should convert the set into a list + # hull = hull.convex_hull( list(points) ) + # hull_edges = list(utils.tour(hull)) + # LOGN( "\t\tHull of",len(hull_edges),"edges" ) LOGN( "\tRemove triangles that are not sub-parts of the Penrose tiling" ) # def adjoin_hull(triangle):