[][src]Struct kiss3d::scene::PlanarObjectData

pub struct PlanarObjectData { /* fields omitted */ }

Set of data identifying a scene node.

Methods

impl PlanarObjectData[src]

pub fn texture(&self) -> &Rc<Texture>[src]

The texture of this object.

pub fn color(&self) -> &Point3<f32>[src]

The color of this object.

pub fn lines_width(&self) -> f32[src]

The width of the lines draw for this object.

pub fn points_size(&self) -> f32[src]

The size of the points draw for this object.

pub fn surface_rendering_active(&self) -> bool[src]

Whether this object has its surface rendered or not.

pub fn backface_culling_enabled(&self) -> bool[src]

Whether this object uses backface culling or not.

pub fn user_data(&self) -> &dyn Any[src]

An user-defined data.

Use dynamic typing capabilities of the Any type to recover the actual data.

Auto Trait Implementations

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto 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<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> Same for T

type Output = T

Should always be Self

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

impl<T> Downcast for T where
    T: Any

impl<T> Erased for T