Searched defs:voronoi (Results 1 - 5 of 5) sorted by relevance

/inkscape/share/extensions/
H A Dvoronoi2svg.py8 - Python translation to file voronoi.py by Bill Simons, 2005, http://www.oxfish.com/
38 import voronoi namespace
336 vertices,lines,edges = voronoi.computeVoronoiDiagram(pts)
356 triangles = voronoi.computeDelaunayTriangulation(seeds)
H A Dgenerate_voronoi.py6 - Python translation to file voronoi.py by Bill Simons, 2005, http://www.oxfish.com/
28 import voronoi namespace
114 c = voronoi.Context()
121 pts.append(voronoi.Site(x, y))
123 pts.append(voronoi.Site(x + q['width'], y))
125 pts.append(voronoi.Site(x + q['width'], y + q['height']))
127 pts.append(voronoi.Site(x + q['width'], y - q['height']))
129 pts.append(voronoi.Site(x - q['width'], y))
131 pts.append(voronoi.Site(x - q['width'], y + q['height']))
133 pts.append(voronoi
[all...]
H A Dvoronoi.py26 # original code into C++ (http://mapviewer.skynet.ie/voronoi.html)
34 voronoi - compute Voronoi diagram or Delaunay triangulation
36 voronoi [-t -p -d] [filename]
64 On unsorted data uniformly distributed in the unit square, voronoi uses about
177 def voronoi(siteList,context): function
742 voronoi(siteList,context)
754 voronoi(siteList,context)
791 voronoi(sl,c)
/inkscape/src/libdepixelize/
H A Dkopftracer2011.cpp91 SimplifiedVoronoi<Precision, false> voronoi local
97 Splines ret(voronoi);
120 SimplifiedVoronoi<Precision, false> voronoi local
126 HomogeneousSplines<Precision> splines(voronoi);
191 SimplifiedVoronoi<Precision, true> voronoi local
197 HomogeneousSplines<Precision> splines(voronoi);
/inkscape/src/libdepixelize/priv/
H A Dhomogeneoussplines.h69 HomogeneousSplines(const SimplifiedVoronoi<T, adjust_splines> &voronoi);
178 adjust_splines> &voronoi) :
179 _width(voronoi.width()),
180 _height(voronoi.height())
182 //if (!voronoi.size())
190 for ( voronoi_citer cell_it = voronoi.begin(), cell_end = voronoi.end()
177 HomogeneousSplines(const SimplifiedVoronoi<T, adjust_splines> &voronoi) argument

Completed in 32 milliseconds