three-d 0.7.2

A renderer which compiles to both desktop (OpenGL) and web (WebAssembly + WebGL).
Documentation
//!
//! Effects applied to each pixel, for example fog or anti-aliasing.
//!

mod image_effect;
#[doc(inline)]
pub use image_effect::*;

mod fog;
#[doc(inline)]
pub use fog::*;

mod fxaa;
#[doc(inline)]
pub use fxaa::*;