make
You will need an SVG viewer or
a converter like ImageMagick’s convert
.
See FAQ 3.17 - How do I compile and install ImageMagick for entries that
require it?.
Look here to find some SVG Viewer Implementations.
./boutines < input > output.svg
./try.sh
If ruby
is installed try.sh will generate an SVG file by:
ruby -e '20.times{puts "#{rand} #{rand}"}' | ./boutines > test.svg
It will also create an SVG file with the file input.txt.
The script will check if convert
is available and if so it will try converting
the SVG file(s) to PNG file(s) which you should be able to view in most any
graphics viewer, editor or web browser.
If you have a program that opens
SVG files then you could open
the test.svg
and result.svg
files directly. An example program is
Inkscape. See the
list cited above for
others.
Can you explain the author’s remark “[generated files] are not as scalable as their name suggests”?
In memory of my father Pierre Boutines-Vignard.
My program works as follows:
A list of 2D points in the unit square.
A Voronoi diagram of the set as an SVG stream.
This will possibly save a compressed SVG file and may be useful:
./boutines | gzip > result.svg.gz
Input consists of a list of floating points values separated by whitespaces
(ranging preferably in [0,1]
). Alternating a horizontal coordinate, a
whitespace then the other coordinate (pointing downwards in the resulting
graph) and a newline will just go fine:
0 0
0 1
1 0
1 1
.5 .5
Strictly speaking, you have to provide a set of points. If there are duplicates in the list, there is no guarantee on the one to be shown (in addition their labels will overlap) in the resulting colored Voronoi diagram.
This program might have been a lot shorter, but nearly impractical even for medium sized datasets. On the other hand it could have been a lot faster, but hard to qualify under the IOCCC size limit. So guess what I did? A compromise favoring innermost obfuscation, sacrificing sometimes speed and other tedious factors.
Therefore this entry is limited to
points and won’t even be suitable for more than a few thousand; although generated files did pass the W3C SVG Validator, and are highly compressible, they are not as scalable as their name suggests… For serious applications about Voronoi diagrams, see Qhull, CGAL and the like but you may still encounter large output volumes (and have to handle some sort of clipping in order to represent properly infinite regions of the diagram in SVG).
Beware, compilation may report warnings about precision loss, linting may be a
disaster, but the code should remain portable, and the output accurate enough
for most devices (including many inkjet printers). If you ever miss precision
on a particular dataset or peripheral, you may want to dive in and let U
be
the next power of __LINE__
.
NOTE: bad inputs will be sanctioned by the production of the 42nd Mersenne prime (i.e. 2^25964951 -1); memory will be kept.
I’m quite divided on the subject because I wrote:
math.h
.if
.Be sure to check the antepenultimate line of code.
Cell colors are chosen randomly (with a questionable rejection scheme). It might have been useful to input them along with sites coordinates, turning the application into a puzzling graphics engine.
The points are implicitly numbered in the order they were entered (starting at one). This can be overridden however, via a simple XSL transformation.
The site radius is hardcoded in the code, I still wonder why I did not design it as a function of the underlying cell’s area (which can be averaged for free) or at least a command line parameter. Same with the char set, the viewport and potentially every SVG property.