pbrt/shared/src/shapes/mod.rs

15 lines
250 B
Rust

pub mod bilinear;
pub mod curves;
pub mod cylinder;
pub mod disk;
pub mod sphere;
pub mod triangle;
pub mod mesh;
pub use bilinear::*;
pub use curves::*;
pub use cylinder::*;
pub use disk::*;
pub use sphere::*;
pub use triangle::*;
pub use mesh::*;