[][src]Struct rapier3d::geometry::Trimesh

pub struct Trimesh { /* fields omitted */ }

A triangle mesh.

Implementations

impl Trimesh[src]

pub fn new(vertices: Vec<Point<f32>>, indices: Vec<Point3<u32>>) -> Self[src]

Creates a new triangle mesh from a vertex buffer and an index buffer.

pub fn aabb(&self, pos: &Isometry<f32>) -> AABB<f32>[src]

Compute the axis-aligned bounding box of this triangle mesh.

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

The number of triangles forming this mesh.

pub fn triangles(&self) -> impl Iterator<Item = Triangle> + '_[src]

An iterator through all the triangles of this mesh.

pub fn triangle(&self, i: usize) -> Triangle[src]

Get the i-th triangle of this mesh.

pub fn vertices(&self) -> &[Point<f32>][src]

The vertex buffer of this mesh.

pub fn indices(&self) -> &[Point3<u32>][src]

The index buffer of this mesh.

pub fn flat_indices(&self) -> &[u32][src]

A flat view of the index buffer of this mesh.

Trait Implementations

impl Clone for Trimesh[src]

impl PointQuery<f32> for Trimesh[src]

impl RayCast<f32> for Trimesh[src]

impl Shape for Trimesh[src]

Auto Trait Implementations

impl RefUnwindSafe for Trimesh

impl Send for Trimesh

impl Sync for Trimesh

impl Unpin for Trimesh

impl UnwindSafe for Trimesh

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> Downcast for T where
    T: Any
[src]

impl<T> DowncastSync for T where
    T: Send + Sync + Any
[src]

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,