Struct rs_pbrt::core::reflection::FourierBSDFTable
source · pub struct FourierBSDFTable {
pub eta: Float,
pub m_max: i32,
pub n_channels: i32,
pub n_mu: i32,
pub mu: Vec<Float>,
pub m: Vec<i32>,
pub a_offset: Vec<i32>,
pub a: Vec<Float>,
pub a0: Vec<Float>,
pub cdf: Vec<Float>,
pub recip: Vec<Float>,
}
Fields§
§eta: Float
§m_max: i32
§n_channels: i32
§n_mu: i32
§mu: Vec<Float>
§m: Vec<i32>
§a_offset: Vec<i32>
§a: Vec<Float>
§a0: Vec<Float>
§cdf: Vec<Float>
§recip: Vec<Float>
Implementations§
Trait Implementations§
source§impl Default for FourierBSDFTable
impl Default for FourierBSDFTable
source§fn default() -> FourierBSDFTable
fn default() -> FourierBSDFTable
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for FourierBSDFTable
impl Send for FourierBSDFTable
impl Sync for FourierBSDFTable
impl Unpin for FourierBSDFTable
impl UnwindSafe for FourierBSDFTable
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<R, P> ReadPrimitive<R> for Pwhere
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for Pwhere R: Read + ReadEndian<P>, P: Default,
source§fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
fn read_from_little_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as
ReadEndian::read_from_little_endian()
.