[][src]Struct duku::Light

pub struct Light {
    pub coords: Vector3,
    pub color: Color,
    pub brightness: f32,
    pub light_type: LightType,
}

Light used in shadowing calculations.

Example

This example is not tested
target.lights[0] = Light::main([-1.0, 1.0, 0.0], Color::RED, 5.0);

Fields

coords: Vector3

either direction or position of the light

color: Color

color of the light

brightness: f32

brightness of the light, multiplied with the color in shaders

light_type: LightType

the type of the light

Implementations

impl Light[src]

pub fn main(
    direction: impl Into<Vector3>,
    color: impl Into<Color>,
    brightness: f32
) -> Self
[src]

Create main light

pub fn directional(
    direction: impl Into<Vector3>,
    color: impl Into<Color>,
    brightness: f32
) -> Self
[src]

Create directional light

pub fn point(
    position: impl Into<Vector3>,
    color: impl Into<Color>,
    brightness: f32
) -> Self
[src]

Create point light

Trait Implementations

impl Clone for Light[src]

impl Copy for Light[src]

impl Debug for Light[src]

Auto Trait Implementations

impl RefUnwindSafe for Light

impl Send for Light

impl Sync for Light

impl Unpin for Light

impl UnwindSafe for Light

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