geodesic 0.1.0

A Rust library for constructing and sampling 3D geometric scenes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod aabb;
mod mesh;
mod plane;
mod sphere;
mod triangle;

pub use aabb::Aabb;
pub use mesh::Mesh;
pub use plane::Plane;
pub use sphere::Sphere;
pub use triangle::Triangle;