1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
//! **Texture** is a template class parameterized by return type of
//! its evaluation function. This design makes it possible to reuse
//! almost all of the code among textures that return different
//! types. PBRT currently uses only **Float** and **Spectrum**
//! textures.
//!
//! - BilerpTexture
//! - Checkerboard2DTexture
//! - ConstantTexture
//! - DotsTexture
//! - FBmTexture
//! - ImageTexture
//! - MarbleTexture
//! - MixTexture
//! - PtexTexture
//! - ScaleTexture
//! - UVTexture
//! - WindyTexture
//! - WrinkledTexture
//!
//! ## Checkerboard2DTexture
//!
//! ![Checkerboard2DTexture](/doc/img/checkerboard_pbrt_rust.png)
//!
//! ## DotsTexture
//!
//! ![DotsTexture](/doc/img/dots_pbrt_rust.png)
//!
//! ## FBmTexture
//!
//! ![FBmTexture](/doc/img/fbm_pbrt_rust.png)
//!
//! ## MarbleTexture
//!
//! ![MarbleTexture](/doc/img/marble_pbrt_rust.png)
//!
//! ## WindyTexture
//!
//! ![WindyTexture](/doc/img/windy_pbrt_rust.png)
//!
//! ## WrinkledTexture
//!
//! ![WrinkledTexture](/doc/img/wrinkled_pbrt_rust.png)
pub mod checkerboard;
pub mod constant;
pub mod dots;
pub mod fbm;
pub mod imagemap;
pub mod marble;
pub mod mix;
pub mod scale;
pub mod windy;
pub mod wrinkled;