From fee243fbf0da2329d69b362c3cdc89b5628c1954 Mon Sep 17 00:00:00 2001 From: zzzzrrr Date: Tue, 24 Nov 2009 12:28:34 -0500 Subject: [PATCH] removed assert --- python/seidel.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/seidel.py b/python/seidel.py index e55f2ef..98daecb 100644 --- a/python/seidel.py +++ b/python/seidel.py @@ -197,8 +197,10 @@ def line_intersect(edge, x): class Triangulator(object): + ## + ## Number of points should be > 3 + ## def __init__(self, poly_line): - assert len(poly_line) > 3, "Number of points must be > 3" self.polygons = [] self.trapezoids = [] self.xmono_poly = []