[][src]Struct rpt::MonomialSurface

pub struct MonomialSurface {
    pub height: f64,
    pub exp: f64,
}

Represents a glass-shaped surface with height and exp parameters

Points satisfy the relation y = height * sqrt(x^2 + z^2)^exp, x^2 + z^2 <= 1.

Normals and other things probably can't be generalized, so they work only for exp=4 for now

Fields

height: f64

The height of the surface

exp: f64

The surface exponent, must be equal to 4 currently

Implementations

impl MonomialSurface[src]

pub fn closest_point(&self, point: &DVec3) -> DVec3[src]

Estimates the closest point on the surface to a given point

pub fn closest_point_precise(&self, point: &DVec3) -> DVec3[src]

More precise and slower version of the closest_point function

Trait Implementations

impl Bounded for MonomialSurface[src]

impl Shape for MonomialSurface[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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<V, T> VZip<V> for T where
    V: MultiLane<T>,