d3/src/lib.rs
2022-07-24 21:45:27 -07:00

16 lines
368 B
Rust

//! Some docs idk
#![warn(clippy::pedantic)]
#![allow(clippy::must_use_candidate)]
#![allow(clippy::return_self_not_must_use)]
#![warn(missing_docs)]
/// Quaternions, or rotations in 3d space.
pub mod quaternion;
/// Rgb (red green blue) colors.
pub mod rgb;
/// Vec2, or a location in 2d space.
pub mod vector2;
/// Vec3, or a location in 3d space
pub mod vector3;