mirror of
https://github.com/jhasse/poly2tri.git
synced 2024-11-26 15:26:12 +01:00
removed assert
This commit is contained in:
parent
2e0041456a
commit
fee243fbf0
@ -197,8 +197,10 @@ def line_intersect(edge, x):
|
|||||||
|
|
||||||
class Triangulator(object):
|
class Triangulator(object):
|
||||||
|
|
||||||
|
##
|
||||||
|
## Number of points should be > 3
|
||||||
|
##
|
||||||
def __init__(self, poly_line):
|
def __init__(self, poly_line):
|
||||||
assert len(poly_line) > 3, "Number of points must be > 3"
|
|
||||||
self.polygons = []
|
self.polygons = []
|
||||||
self.trapezoids = []
|
self.trapezoids = []
|
||||||
self.xmono_poly = []
|
self.xmono_poly = []
|
||||||
|
Loading…
Reference in New Issue
Block a user