libcruft-util/tools/poisson.cpp
Danny Robson f6056153e3 rename root namespace from util to cruft
This places, at long last, the core library code into the same namespace
as the extended library code.
2018-08-05 14:42:02 +10:00

40 lines
1.4 KiB
C++

#include "cmdopt.hpp"
#include "functor.hpp"
#include "geom/aabb.hpp"
#include "geom/sample.hpp"
#include <cstdlib>
#include <iostream>
#include <random>
///////////////////////////////////////////////////////////////////////////////
int
main (int argc, char **argv)
{
cruft::extent2f area {256, 256};
float distance = 5.f;
int samples = 15;
cruft::cmdopt::parser opts;
opts.add<cruft::cmdopt::option::value<float>> ('w', "width", "width of the space to fill", area.w);
opts.add<cruft::cmdopt::option::value<float>> ('h', "height", "height of the space to fill", area.h);
opts.add<cruft::cmdopt::option::value<float>> ('d', "distance", "minimum distance between samples", distance);
opts.add<cruft::cmdopt::option::value<int>> ('s', "samples", "number of samples per iteration", samples);
opts.scan (argc, argv);
std::cout << "<svg height='" << area.h << "' width='" << area.h << "'>";
for (auto p: cruft::geom::surface::poisson (cruft::geom::surface::sampler (area),
std::default_random_engine (),
cruft::functor::constant (distance),
samples))
{
std::cout << "<circle cx='" << p.x << "' cy='" << p.y << "' r='1' />";
}
std::cout << "</svg>\n";
return EXIT_SUCCESS;
}