Skip to main content

HairMaterial

Struct HairMaterial 

Source
pub struct HairMaterial { /* private fields */ }
Expand description

HAI_ — Hair material (defunct, v0, 116 bytes)

Anisotropic hair rendering material with specular shift and AO. Always null in observed corpus data.

Implementations§

Source§

impl HairMaterial

Source

pub fn new() -> Self

§Panics

Panics if the native allocation fails.

Source

pub fn name(&self) -> String

Material name (Ref<CHAR>)

Source

pub fn set_name(&mut self, value: &str)

Source

pub fn shift_primary(&self) -> f32

Primary specular shift

Source

pub fn set_shift_primary(&mut self, value: f32)

Source

pub fn shift_secondary(&self) -> f32

Secondary specular shift

Source

pub fn set_shift_secondary(&mut self, value: f32)

Source

pub fn color_diffuse(&self) -> Ref<'_, AnimRefM3ColorBGRA>

Animated diffuse tint Borrows the field in place — no copy, no allocation.

Source

pub fn color_diffuse_mut(&mut self) -> RefMut<'_, AnimRefM3ColorBGRA>

Source

pub fn color_spec(&self) -> Ref<'_, AnimRefM3ColorBGRA>

Animated specular tint Borrows the field in place — no copy, no allocation.

Source

pub fn color_spec_mut(&mut self) -> RefMut<'_, AnimRefM3ColorBGRA>

Source

pub fn spec_exponent_0(&self) -> f32

Primary specular exponent

Source

pub fn set_spec_exponent_0(&mut self, value: f32)

Source

pub fn spec_exponent_1(&self) -> f32

Secondary specular exponent

Source

pub fn set_spec_exponent_1(&mut self, value: f32)

Trait Implementations§

Source§

impl Debug for HairMaterial

Source§

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

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

impl Default for HairMaterial

Source§

fn default() -> Self

Returns the “default value” for a type. Read more
Source§

impl Drop for HairMaterial

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

fn pin_drop(self: Pin<&mut Self>)

🔬This is a nightly-only experimental API. (pin_ergonomics)
Execute the destructor for this type, but different to Drop::drop, it requires self to be pinned. Read more
Source§

impl Send for HairMaterial

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.

Source§

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

Source§

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>,

Source§

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.