An example of this crate in action. An array of polygons (not a texture!) are rendered on a sinusoidal terrain.
Note how the polygons rise and fall with the terrain, and can be partially occluded by a bump/mountain in the way.
Another example, showing the Republic of South Africa. Note the hole in the mainland part of the country (which is where South Africa borders the Kingdom of Lesotho, a separate country), and the distant Marion Islands at the bottom right.
This library is designed to be easy to use with GIS data, but you can easily construct polygons manually too.
This is a library for helping you draw polygons on a terrain. It uses a screen-space algorithm based on the depth and stencil buffers. Performance is affected only by the complexity of the polygons you're drawing, not the terrain it's drawn on.
This library is a Rust implementation the algorithm described by Schneider & Klein (2007), titled "Efficient and Accurate Rendering of Vector Data on Virtual Landscapes".
The first screenshot was taken from this minimalist demo:
```bash
cargo run --example demo ```
The second screenshot was taken from the south_africa
demo, which demonstrates
how to combine this library with GIS data:
```bash
cargo run --release --example south_africa ```
You can, as long the following things are true:
gfx
to do your graphics.
See the top-level documentation for high-level guidance on how you'd use this crate.
If any of these problems interest you, open an issue or contact me, and I can give you a hand. Or just open a PR if you're bold! :smile: