cg_math/
lib.rs

1//! # 📐 CG Math
2//!
3//! A computer graphics (cg) library designed around _simplices_ and for usage with `cg-lab`. <br>
4//! This project has the following structure:
5//! - `Algos`: popular algorithms in the field of computer graphics implemented with a focus on readability instead of optimization, e.g. the BowyerWatson algorithm for triangulations
6//! - `Geometry`: useful structures and corresponding properties for computations in vector spaces, e.g. vertices, edges, triangles etc.
7//! - `Validation`: contains methods for validating results of the algorithms
8
9pub mod algos;
10pub mod geometry;
11pub mod validation;
12mod consts;
13pub mod utils;