~valavanisalex/inkscape/fix-792263

« back to all changes in this revision

Viewing changes to share/extensions/voronoi.py

  • Committer: apenner
  • Date: 2011-05-29 23:32:17 UTC
  • Revision ID: penner@vaxxine.com-20110529233217-evjpa5wrsclruhhg
Voronoi extension by Vincent Nivoliers (Bug 783922)

Show diffs side-by-side

added added

removed removed

Lines of Context:
747
747
    """
748
748
    siteList = SiteList(points)
749
749
    context  = Context()
750
 
    context.triangulate = true
 
750
    context.triangulate = True
751
751
    voronoi(siteList,context)
752
752
    return context.triangles
753
753