pathtracer/pathtracer/src/lib.rs
2020-03-29 20:41:19 +02:00

19 lines
307 B
Rust

#![warn(missing_docs)]
//! A pathtracing crate
/// 3D points and vectors
pub use beevee::{Point, Vector};
/// A 2D point coordinate
pub type Point2D = nalgebra::Point2<f32>;
pub mod core;
pub mod light;
pub mod material;
pub mod render;
pub mod scene;
pub mod serialize;
pub mod shape;
pub mod texture;