Struct rustracer::normal::Normal

source ·
pub struct Normal {
    pub x: f32,
    pub y: f32,
    pub z: f32,
}
Expand description

3D Normal struct.

Note: a 3D normal is a 3D vector with norm equal to 1, but it acts differently when 3D transformation is applied.
So is better to create 2 two different objects (structs) despite similarity and doubling the code.

Fields§

§x: f32

x component.

§y: f32

y component.

§z: f32

z component.

Implementations§

source§

impl Normal

source

pub fn neg(&self) -> Self

Return the reversed normal.

source

pub fn dot(self, other: Normal) -> f32

Compute the dot product between two normals.

source

pub fn squared_norm(self) -> f32

Return the squared norm (Euclidean length) of a normal.

This is faster than norm if you just need the squared norm.

source

pub fn norm(self) -> f32

Return the norm (Euclidean length) of a normal.

source

pub fn normalize(self) -> Self

Modify the normal’s norm so that it becomes equal to 1.

And return the normalized normal.

Trait Implementations§

source§

impl Clone for Normal

source§

fn clone(&self) -> Normal

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Normal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Display for Normal

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<(f32, f32, f32)> for Normal

source§

fn from(xyz: (f32, f32, f32)) -> Self

Converts to this type from the input type.
source§

impl From<Normal> for Vector

source§

fn from(normal: Normal) -> Self

Converts to this type from the input type.
source§

impl IsClose for Normal

source§

fn is_close(&self, other: Normal) -> bool

Return true if the three xyz components of two Normal are close.

source§

impl Mul<Normal> for Transformation

§

type Output = Normal

The resulting type after applying the * operator.
source§

fn mul(self, normal: Normal) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<Vector> for Normal

§

type Output = Normal

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Vector) -> Self::Output

Performs the * operation. Read more
source§

impl Mul<f32> for Normal

§

type Output = Normal

The resulting type after applying the * operator.
source§

fn mul(self, rhs: f32) -> Self::Output

Performs the * operation. Read more
source§

impl Mul for Normal

§

type Output = Normal

The resulting type after applying the * operator.
source§

fn mul(self, rhs: Normal) -> Self::Output

Performs the * operation. Read more
source§

impl PartialEq for Normal

source§

fn eq(&self, other: &Normal) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Copy for Normal

source§

impl StructuralPartialEq for Normal

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.