Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-05-22 | Add README.mdHEADmaster | Adrian Kummerlaender | |
2016-05-22 | Add MIT license | Adrian Kummerlaender | |
2016-05-22 | Implement script to automatically generate a GIF of the Voronoi-diagrams ↵ | Adrian Kummerlaender | |
based on the Minkowski metric for p in [1, 2] | |||
2016-05-22 | Extract determination of nearest reference vector | Adrian Kummerlaender | |
Replaced const reference with call by value style functions to simplify the code (no performance degredation was detected). | |||
2016-05-22 | Fix segmentation fault when instantiating `ppm_pixel_stream` in a ↵ | Adrian Kummerlaender | |
multithreaded environment | |||
2016-05-22 | Extract image generation into shared library | Adrian Kummerlaender | |
2016-05-22 | Introduce `imgen::vector` tuple alias, generate metrics as double | Adrian Kummerlaender | |
2016-05-22 | Consistently use `std::ptrdiff_t` for coordinates | Adrian Kummerlaender | |
2016-05-22 | Prevent off-by-one errors during sequential generation | Adrian Kummerlaender | |
i.e. replaced floating point iteration counter with an integer and use it to calculate the actual p values. | |||
2016-05-20 | Implement unit circle example | Adrian Kummerlaender | |
`unit_circle.sh` generates a animated GIF of the circle states between p=1 and p=3. | |||
2016-05-16 | Generalize parallel generation of Voronoi diagrams | Adrian Kummerlaender | |
2016-05-14 | Implement basic multi threading | Adrian Kummerlaender | |
2016-05-14 | Implement serial graphic generation | Adrian Kummerlaender | |
i.e. generate the source of a GIF visualizing the fluid morphing of the manhattan metric into the euclidean metric for p -> 2. | |||
2016-05-14 | Separate into multiple compilation units, add color functions | Adrian Kummerlaender | |
* fix cartesian coordinate determination | |||
2016-05-14 | Extract stream management into `ppm_pixel_stream`, provide Cartesian coordinates | Adrian Kummerlaender | |
2016-05-08 | Express Euclidean and Manhattan metric in terms of the Minkowski metric | Adrian Kummerlaender | |
2016-05-08 | Implement _manhattan metric_ | Adrian Kummerlaender | |
Changed metric parameter types to int as `std::size_t` behaved weirdly during math operations. | |||
2016-05-08 | Adapt example to generate a Voronoi diagram for n points | Adrian Kummerlaender | |
2016-05-08 | Implement basic PPM writing function | Adrian Kummerlaender | |
`write_ppm` generates a PPM image using a given generation function. Output is written using `std::ofstream`. The library is intended to become a straight forward way to test out various visualizations. |