geom3d 0.2.0

Data structures and algorithms for 3D geometric modeling.
Documentation
pub type Float = f64;
pub type Vec3 = glam::DVec3;
pub type Vec4 = glam::DVec4;
pub type Point3 = Vec3;
pub type Point4 = Vec4;
pub type Quat = glam::DQuat;
pub use std::f64::consts;

mod basis;
pub mod curve;
mod face;
mod knot;
mod mesh;
pub mod model;
pub mod surface;
pub mod utils;

pub use curve::CurveGroup;
pub use face::Face;
pub use grid::{grid, Grid};
pub use knot::KnotVector;
pub use mesh::TriangleMesh;
pub use model::Model;