Struct tetra::graphics::NineSlice[][src]

pub struct NineSlice {
    pub region: Rectangle,
    pub left: f32,
    pub right: f32,
    pub top: f32,
    pub bottom: f32,
}

Information on how to slice a texture so that it can be stretched or squashed without distorting the borders.

This can be used with Texture::draw_nine_slice to easily draw things like UI panels.

Examples

The nineslice example demonstrates how to draw a NineSlice panel.

Fields

region: Rectangle

The region of the texture that should be used.

left: f32

The offset of the border on the left side.

right: f32

The offset of the border on the right side.

top: f32

The offset of the border on the top side.

bottom: f32

The offset of the border on the bottom side.

Implementations

impl NineSlice[src]

pub fn new(
    region: Rectangle,
    left: f32,
    right: f32,
    top: f32,
    bottom: f32
) -> NineSlice
[src]

Creates a new nine slice configuration with the given offsets.

pub fn with_border(region: Rectangle, border: f32) -> NineSlice[src]

Creates a new nine slice configuration, using the same offset for all edges.

Trait Implementations

impl Clone for NineSlice[src]

impl Debug for NineSlice[src]

Auto Trait Implementations

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.