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
sourceimpl Default for FourierBSDFTable
impl Default for FourierBSDFTable
sourcefn 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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
impl<R, P> ReadPrimitive<R> for P where
R: Read + ReadEndian<P>,
P: Default,
sourcefn 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()
.
sourcefn read_from_big_endian(read: &mut R) -> Result<Self, Error>
fn read_from_big_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_big_endian()
.
sourcefn read_from_native_endian(read: &mut R) -> Result<Self, Error>
fn read_from_native_endian(read: &mut R) -> Result<Self, Error>
Read this value from the supplied reader. Same as ReadEndian::read_from_native_endian()
.