[−][src]Struct ncollide3d::shape::TriMesh
A 3d triangle mesh.
Methods
impl<N: RealField> TriMesh<N>
[src][−]
pub fn new(
points: Vec<Point<N>>,
indices: Vec<Point3<usize>>,
uvs: Option<Vec<Point2<N>>>
) -> TriMesh<N>
[src][−]
points: Vec<Point<N>>,
indices: Vec<Point3<usize>>,
uvs: Option<Vec<Point2<N>>>
) -> TriMesh<N>
Builds a new mesh.
pub fn aabb(&self) -> &AABB<N>
[src][−]
The triangle mesh's AABB.
pub fn points(&self) -> &[Point<N>]
[src][−]
The points of this mesh.
pub fn faces(&self) -> &[TriMeshFace<N>]
[src][−]
The faces of this mesh.
pub fn edges(&self) -> &[TriMeshEdge]
[src][−]
The edges of this mesh.
pub fn vertices(&self) -> &[TriMeshVertex]
[src][−]
The vertices of this mesh.
pub fn transform_by(&mut self, transform: &Isometry<N>)
[src][−]
Applies in-place a transformation to this triangle mesh.
pub fn transformed(self, transform: &Isometry<N>) -> Self
[src][−]
Applies a transformation to this triangle mesh.
pub fn scale_by(&mut self, scale: &Vector<N>)
[src][−]
Applies in-place a non-uniform scale to this triangle mesh.
pub fn scaled(self, scale: &Vector<N>) -> Self
[src][−]
Applies a non-uniform scale to this triangle mesh.
pub fn oriented(&self) -> bool
[src][−]
Whether this trimesh is considered is oriented or not.
By default a trimesh is not oriented.
pub fn set_oriented(&mut self, oriented: bool)
[src][−]
Whether this trimesh is considered as oriented or not.
This is determined at the initialization of the trimesh.
pub fn face_containing_feature(&self, id: FeatureId) -> usize
[src][−]
Face containing feature.
pub fn edge_segment(&self, i: usize) -> Segment<N>
[src][−]
The segment of the i
-th edge on this triangle mesh.
pub fn uvs(&self) -> Option<&[Point2<N>]>
[src][−]
The texture coordinates of this mesh.
pub fn triangle_at(&self, i: usize) -> Triangle<N>
[src][−]
Gets the i-th mesh element.
pub fn is_backface(&self, feature: FeatureId) -> bool
[src][−]
Returns true
if the given feature is a FeatureId::Face and
identifies a backface of this trimesh.
pub fn bvt(&self) -> &BVT<usize, AABB<N>>
[src][−]
The optimization structure used by this triangle mesh.
pub fn vertex_tangent_cone_contains_dir(
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
[src][−]
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
Tests that the given dir
is on the tangent cone of the i
th vertex
of this mesh.
pub fn vertex_tangent_cone_polar_contains_dir(
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N
) -> bool
[src][−]
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N
) -> bool
Tests that the given dir
is on the polar of the tangent cone of the i
th vertex
of this mesh.
pub fn edge_tangent_cone_contains_dir(
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
[src][−]
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
Tests that the given dir
is on the tangent cone of the i
th edge
of this mesh.
pub fn edge_tangent_cone_polar_contains_orthogonal_dir(
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N
) -> bool
[src][−]
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N
) -> bool
Tests that the given dir
is on the polar of the tangent cone of the i
th edge
of this mesh.
The dir
is assumed to be orthogonal to the edge.
pub fn edge_tangent_cone_polar_contains_dir(
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N,
_cos_ang_tol: N
) -> bool
[src][−]
&self,
i: usize,
dir: &Unit<Vector<N>>,
sin_ang_tol: N,
_cos_ang_tol: N
) -> bool
Tests that the given dir
is on the polar of the tangent cone of the i
th edge
of this mesh.
pub fn face_tangent_cone_contains_dir(
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
[src][−]
&self,
i: usize,
deformations: Option<&[N]>,
dir: &Unit<Vector<N>>
) -> bool
Tests that the given dir
is on the tangent cone of the i
th face
of this mesh.
pub fn face_tangent_cone_polar_contains_dir(
&self,
i: usize,
dir: &Unit<Vector<N>>,
cos_ang_tol: N
) -> bool
[src][−]
&self,
i: usize,
dir: &Unit<Vector<N>>,
cos_ang_tol: N
) -> bool
Checks if the polar of the tangent cone of the i
-th face of this triangle mesh contains
the specified direction within an angular tolerence.
pub fn tangent_cone_polar_contains_dir(
&self,
feature: FeatureId,
dir: &Unit<Vector<N>>,
sin_ang_tol: N,
cos_ang_tol: N
) -> bool
[src][−]
&self,
feature: FeatureId,
dir: &Unit<Vector<N>>,
sin_ang_tol: N,
cos_ang_tol: N
) -> bool
Checks if the polar of the tangent cone of the specified feature of this triangle mesh contains the specified direction within an angular tolerence.
Trait Implementations
impl<N: Clone + RealField> Clone for TriMesh<N>
[src][+]
impl<N: RealField> CompositeShape<N> for TriMesh<N>
[src][+]
impl<N: RealField> DeformableShape<N> for TriMesh<N>
[src][+]
impl<N: RealField> From<TriMesh<N>> for TriMesh<N>
[src][+]
impl<N: RealField> HasBoundingVolume<N, AABB<N>> for TriMesh<N>
[src][+]
impl<N: RealField> HasBoundingVolume<N, BoundingSphere<N>> for TriMesh<N>
[src][+]
impl<N: RealField> PointQuery<N> for TriMesh<N>
[src][+]
impl<N: RealField> PointQueryWithLocation<N> for TriMesh<N>
[src][+]
impl<N: RealField> RayCast<N> for TriMesh<N>
[src][+]
impl<N: RealField> Shape<N> for TriMesh<N>
[src][+]
Auto Trait Implementations
impl<N> RefUnwindSafe for TriMesh<N> where
N: RefUnwindSafe + Scalar,
N: RefUnwindSafe + Scalar,
impl<N> Send for TriMesh<N> where
N: Scalar,
N: Scalar,
impl<N> Sync for TriMesh<N> where
N: Scalar,
N: Scalar,
impl<N> Unpin for TriMesh<N> where
N: Scalar + Unpin,
N: Scalar + Unpin,
impl<N> UnwindSafe for TriMesh<N> where
N: Scalar + UnwindSafe,
N: Scalar + UnwindSafe,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> Downcast for T where
T: Any,
[+]
T: Any,
impl<T> DowncastSync for T where
T: Send + Sync + Any,
[+]
T: Send + Sync + Any,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
[+]
SS: SubsetOf<SP>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[+]
V: MultiLane<T>,