[][src]Struct tray_rust::bxdf::specular_reflection::SpecularReflection

pub struct SpecularReflection<'a> { /* fields omitted */ }

Specular reflection BRDF that implements a specularly reflective material model

Methods

impl<'a> SpecularReflection<'a>[src]

pub fn new(c: &Colorf, fresnel: &'a dyn Fresnel) -> SpecularReflection<'a>[src]

Create a specularly reflective BRDF with the reflective color and Fresnel term

Trait Implementations

impl<'a> BxDF for SpecularReflection<'a>[src]

fn eval(&self, _: &Vector, _: &Vector) -> Colorf[src]

We'll never exactly hit the specular reflection direction with some pair so this just returns black. Use sample instead

fn sample(&self, w_o: &Vector, _: &(f32, f32)) -> (Colorf, Vector, f32)[src]

Sampling the specular BRDF just returns the specular reflection direction for the light leaving along w_o

impl<'a> Clone for SpecularReflection<'a>[src]

impl<'a> Copy for SpecularReflection<'a>[src]

Auto Trait Implementations

impl<'a> !Send for SpecularReflection<'a>

impl<'a> !Sync for SpecularReflection<'a>

impl<'a> Unpin for SpecularReflection<'a>

impl<'a> !UnwindSafe for SpecularReflection<'a>

impl<'a> !RefUnwindSafe for SpecularReflection<'a>

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> SetParameter for T[src]