pub struct PlasticMaterial {
pub kd: Arc<dyn Texture<Spectrum> + Sync + Send>,
pub ks: Arc<dyn Texture<Spectrum> + Sync + Send>,
pub roughness: Arc<dyn Texture<Float> + Sync + Send>,
pub bump_map: Option<Arc<dyn Texture<Float> + Send + Sync>>,
pub remap_roughness: bool,
}
Expand description
Plastic can be modeled as a mixture of a diffuse and glossy scattering function.
Fields
kd: Arc<dyn Texture<Spectrum> + Sync + Send>
ks: Arc<dyn Texture<Spectrum> + Sync + Send>
roughness: Arc<dyn Texture<Float> + Sync + Send>
bump_map: Option<Arc<dyn Texture<Float> + Send + Sync>>
remap_roughness: bool
Implementations
sourceimpl PlasticMaterial
impl PlasticMaterial
pub fn new(
kd: Arc<dyn Texture<Spectrum> + Send + Sync>,
ks: Arc<dyn Texture<Spectrum> + Send + Sync>,
roughness: Arc<dyn Texture<Float> + Sync + Send>,
bump_map: Option<Arc<dyn Texture<Float> + Sync + Send>>,
remap_roughness: bool
) -> Self
pub fn create(mp: &mut TextureParams) -> Arc<Material>
pub fn compute_scattering_functions(
&self,
si: &mut SurfaceInteraction<'_>,
_mode: TransportMode,
_allow_multiple_lobes: bool,
_material: Option<Arc<Material>>,
scale_opt: Option<Spectrum>
)
Auto Trait Implementations
impl !RefUnwindSafe for PlasticMaterial
impl Send for PlasticMaterial
impl Sync for PlasticMaterial
impl Unpin for PlasticMaterial
impl !UnwindSafe for PlasticMaterial
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