[][src]Struct parry3d::shape::TriMesh

pub struct TriMesh { /* fields omitted */ }

A triangle mesh.

Implementations

impl TriMesh[src]

pub fn bounding_sphere(&self, pos: &Isometry<Real>) -> BoundingSphere[src]

Computes the world-space bounding sphere of this triangle mesh, transformed by pos.

pub fn local_bounding_sphere(&self) -> BoundingSphere[src]

Computes the local-space bounding sphere of this triangle mesh.

impl TriMesh[src]

pub fn new(vertices: Vec<Point<Real>>, indices: Vec<[u32; 3]>) -> Self[src]

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

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

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

pub fn local_aabb(&self) -> &AABB[src]

Gets the local axis-aligned bounding box of this triangle mesh.

pub fn quadtree(&self) -> &SimdQuadTree<u32>[src]

The acceleration structure used by 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: u32) -> Triangle[src]

Get the i-th triangle of this mesh.

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

The vertex buffer of this mesh.

pub fn indices(&self) -> &[[u32; 3]][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 From<Cuboid> for TriMesh[src]

impl From<HeightField> for TriMesh[src]

impl PointQuery for TriMesh[src]

impl PointQueryWithLocation for TriMesh[src]

type Location = (u32, TrianglePointLocation)

Additional shape-specific projection information Read more

impl RayCast for TriMesh[src]

impl Shape for TriMesh[src]

impl SimdCompositeShape for TriMesh[src]

impl TypedSimdCompositeShape for TriMesh[src]

type PartShape = Triangle

type PartId = u32

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> 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> 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>,