primitive meshes

This commit is contained in:
Jérôme Bousquié
2026-09-24 14:25:44 +02:00
parent 805babe53d
commit ab3f056dbb
36 changed files with 1531 additions and 808 deletions
+8
View File
@@ -11,15 +11,23 @@
pub mod context;
pub mod frame;
pub mod frustum;
pub mod geometry;
pub mod hdr;
pub mod input;
pub mod lod;
pub mod renderer;
pub mod shadow;
pub mod transform;
// Re-exports
pub use context::Context;
pub use frame::Frame;
pub use frustum::Frustum;
pub use geometry::{BBox, Geometry, GeometryError};
pub use hdr::ToneMapper;
pub use input::InputState;
pub use lod::{lod_level, projected_radius_px};
pub use renderer::Renderer;
pub use shadow::ShadowConfig;
pub use transform::Transform;