Struct kludgine::Drawable

source ·
pub struct Drawable<T, Unit> {
    pub source: T,
    pub translation: Point<Unit>,
    pub rotation: Option<Angle>,
    pub scale: Option<f32>,
    pub opacity: Option<f32>,
}
Expand description

A drawable source with optional translation, rotation, and scaling.

Fields§

§source: T

The source to draw.

§translation: Point<Unit>

Translate the source before rendering.

§rotation: Option<Angle>

Rotate the source before rendering.

§scale: Option<f32>

Scale the source before rendering.

§opacity: Option<f32>

An opacity multiplier to apply to this drawable.

Implementations§

source§

impl<'pass, Unit> Drawable<&'pass PreparedGraphic<Unit>, Unit>
where Unit: IntoSigned + Copy + Default + ShaderScalable + ScreenUnit + Zero, i32: From<Unit::Signed>, Vertex<Unit>: Pod,

source

pub fn render(&self, graphics: &mut RenderingGraphics<'_, 'pass>)

Renders this prepared graphic into graphics using the options from this Drawable.

Trait Implementations§

source§

impl<T, Unit> DrawableExt<T, Unit> for Drawable<T, Unit>

source§

fn translate_by(self, point: Point<Unit>) -> Drawable<T, Unit>

Translates self by point.
source§

fn rotate_by(self, angle: Angle) -> Drawable<T, Unit>

Rotates self by angle.
source§

fn scale(self, factor: f32) -> Drawable<T, Unit>

Scales self by factor.
source§

fn opacity(self, opacity: f32) -> Drawable<T, Unit>

Renders this drawable with opacity, ranged from 0.- to 1.0.
source§

impl<'a, T, Unit> From<&'a T> for Drawable<&'a T, Unit>
where T: DrawableSource, Unit: Default,

source§

fn from(what: &'a T) -> Self

Converts to this type from the input type.
source§

impl<'a, Unit> From<Text<'a, Unit>> for Drawable<Text<'a, Unit>, Unit>
where Unit: Default,

source§

fn from(what: Text<'a, Unit>) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl<T, Unit> RefUnwindSafe for Drawable<T, Unit>
where T: RefUnwindSafe, Unit: RefUnwindSafe,

§

impl<T, Unit> Send for Drawable<T, Unit>
where T: Send, Unit: Send,

§

impl<T, Unit> Sync for Drawable<T, Unit>
where T: Sync, Unit: Sync,

§

impl<T, Unit> Unpin for Drawable<T, Unit>
where T: Unpin, Unit: Unpin,

§

impl<T, Unit> UnwindSafe for Drawable<T, Unit>
where T: UnwindSafe, Unit: UnwindSafe,

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<A> Cast for A

source§

fn cast<To>(self) -> To
where To: CastFrom<A>,

Casts self to the To type. This may be a lossy operation.
source§

impl<A> CastFrom<A> for A

source§

fn from_cast(from: A) -> A

Returns from as Self.
source§

impl<A, B> CastInto<A> for B
where A: CastFrom<B>,

source§

fn cast_into(self) -> A

Returns self as To.
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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>,

§

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

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> WasmNotSend for T
where T: Send,

§

impl<T> WasmNotSync for T
where T: Sync,