Terrain Rasterizer
Conversion of GPS data into 2.5D topographic maps
Loading...
Searching...
No Matches
rasterizer.hpp
1#ifndef RASTERIZER_HPP
2#define RASTERIZER_HPP
3
4#include "triangulation.hpp"
5#include <string>
6
18void generateImage(const std::string &filename, int width, const Mesh &mesh);
19
20#endif // RASTERIZER_HPP
Represents a 3D mesh consisting of points and triangles.
Definition triangulation.hpp:20