assimp_sys

Struct AiLight

Source
#[repr(C)]
pub struct AiLight {
Show 14 fields pub name: AiString, pub light_type: AiLightSourceType, pub position: AiVector3D, pub direction: AiVector3D, pub up: AiVector3D, pub attenuation_constant: c_float, pub attenuation_linear: c_float, pub attenuation_quadratic: c_float, pub color_diffuse: AiColor3D, pub color_specular: AiColor3D, pub color_ambient: AiColor3D, pub angle_inner_cone: c_float, pub angle_outer_cone: c_float, pub size: AiVector2D,
}

Fields§

§name: AiString§light_type: AiLightSourceType§position: AiVector3D§direction: AiVector3D§up: AiVector3D§attenuation_constant: c_float§attenuation_linear: c_float§attenuation_quadratic: c_float§color_diffuse: AiColor3D§color_specular: AiColor3D§color_ambient: AiColor3D§angle_inner_cone: c_float§angle_outer_cone: c_float§size: AiVector2D

Trait Implementations§

Source§

impl Clone for AiLight

Source§

fn clone(&self) -> AiLight

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 AiLight

Source§

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

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

impl Copy for AiLight

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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. 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> ToOwned for T
where T: Clone,

Source§

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