bevy/crates/bevy_render/src/mesh
Joe Ardent 96078c76eb Make accessors for mesh vertices and indices public. (#3906)
# Objective

Make it easy to get position and index data from Meshes.

## Solution

It was previously possible to get the mesh data by manually matching on `Mesh::VertexAttributeValues` and `Mesh::Indices`as in the bodies of these two methods (`VertexAttributeValues::as_float3(&self)` and `Indices::iter(&self)`), but that's needless duplication that making these methods `pub` fixes.
2022-05-09 13:19:33 +00:00
..
mesh Make accessors for mesh vertices and indices public. (#3906) 2022-05-09 13:19:33 +00:00
shape Add RegularPolygon and Circle meshes (#3730) 2022-05-05 00:03:47 +00:00
mod.rs Mesh Skinning. Attempt #3 (#4238) 2022-03-29 18:31:13 +00:00