Struct solstice::mesh::IndexedMesh[][src]

pub struct IndexedMesh<V, I> { /* fields omitted */ }
Expand description

A mesh with vertex data that is indexed with separate data.

This is useful if you have a number of vertices that you would otherwise have to duplicate because indices are generally smaller than a vertex so duplicating them is more performant.

Implementations

impl<V, I> IndexedMesh<V, I> where
    V: Vertex,
    I: Index
[src]

pub fn new(
    ctx: &mut Context,
    vertex_count: usize,
    index_count: usize
) -> Result<Self, GraphicsError>
[src]

Construct a mesh with a given number of vertices and indices.

pub fn with_data(
    ctx: &mut Context,
    vertices: &[V],
    indices: &[I]
) -> Result<Self, GraphicsError>
[src]

pub fn with_mesh(
    ctx: &mut Context,
    mesh: VertexMesh<V>,
    index_count: usize
) -> Result<Self, GraphicsError>
[src]

Construct an indexed mesh from a non-indexed mesh.

pub fn set_vertices(&self, ctx: &mut Context, vertices: &[V], offset: usize)[src]

Write new data into a range of the Mesh’s vertex data.

pub fn set_indices(&self, ctx: &mut Context, indices: &[I], offset: usize)[src]

Write new data into a range of the Mesh’s vertex data.

pub fn set_draw_range(&mut self, draw_range: Option<Range<usize>>)[src]

pub fn draw_range(&self) -> Range<usize>[src]

pub fn set_draw_mode(&mut self, draw_mode: DrawMode)[src]

pub fn len(&self) -> usize[src]

Trait Implementations

impl<V: Clone, I: Clone> Clone for IndexedMesh<V, I>[src]

fn clone(&self) -> IndexedMesh<V, I>[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<V: Debug, I: Debug> Debug for IndexedMesh<V, I>[src]

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

Formats the value using the given formatter. Read more

impl<V: Vertex, I: Index> Mesh for IndexedMesh<V, I>[src]

fn attachments(&self) -> Vec<AttachedAttributes<'_>>[src]

fn draw(
    &self,
    ctx: &mut Context,
    draw_range: Range<usize>,
    draw_mode: DrawMode,
    instance_count: usize
)
[src]

impl<V: Vertex, I: Index> Mesh for &IndexedMesh<V, I>[src]

fn attachments(&self) -> Vec<AttachedAttributes<'_>>[src]

fn draw(
    &self,
    ctx: &mut Context,
    draw_range: Range<usize>,
    draw_mode: DrawMode,
    instance_count: usize
)
[src]

impl<V: Vertex, I: Index> MeshAttacher for IndexedMesh<V, I>[src]

fn attach_with_step<'a, T: Mesh>(
    &'a self,
    other: &'a T,
    step: u32
) -> MultiMesh<'a>
[src]

fn attach<'a, T: Mesh>(&'a self, other: &'a T) -> MultiMesh<'a>[src]

impl<V: PartialEq, I: PartialEq> PartialEq<IndexedMesh<V, I>> for IndexedMesh<V, I>[src]

fn eq(&self, other: &IndexedMesh<V, I>) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &IndexedMesh<V, I>) -> bool[src]

This method tests for !=.

impl<V, I> StructuralPartialEq for IndexedMesh<V, I>[src]

Auto Trait Implementations

impl<V, I> RefUnwindSafe for IndexedMesh<V, I> where
    I: RefUnwindSafe,
    V: RefUnwindSafe

impl<V, I> Send for IndexedMesh<V, I> where
    I: Send,
    V: Send

impl<V, I> Sync for IndexedMesh<V, I> where
    I: Sync,
    V: Sync

impl<V, I> Unpin for IndexedMesh<V, I> where
    I: Unpin,
    V: Unpin

impl<V, I> UnwindSafe for IndexedMesh<V, I> where
    I: UnwindSafe,
    V: UnwindSafe

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.