Struct rapier3d::geometry::TriMesh[][src]

pub struct TriMesh { /* fields omitted */ }

A triangle mesh.

Implementations

impl TriMesh[src]

pub fn bounding_sphere(
    &self,
    pos: &Isometry<f32, U3, Unit<Quaternion<f32>>>
) -> 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<f32, U3>, Global>,
    indices: Vec<[u32; 3], Global>
) -> TriMesh
[src]

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

pub fn aabb(&self, pos: &Isometry<f32, U3, Unit<Quaternion<f32>>>) -> 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 is_backface(&self, feature: FeatureId) -> bool[src]

Does the given feature ID identify a backface of this trimesh?

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<f32, U3>][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

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: Any + Send + Sync
[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.