pub struct Polyline<N>where
    N: RealField + Copy,{ /* private fields */ }
Expand description

A polygonal line.

Implementations§

source§

impl<N> Polyline<N>where N: RealField + Copy,

source

pub fn new( points: Vec<OPoint<N, Const<2>>, Global>, indices: Option<Vec<OPoint<usize, Const<2>>, Global>> ) -> Polyline<N>

Builds a new polyline.

source

pub fn quad(nx: usize, ny: usize) -> Polyline<N>

A polyline shaped like a quad, in the x-y plane.

source

pub fn aabb(&self) -> &AABB<N>

The polyline’s AABB.

source

pub fn points(&self) -> &[OPoint<N, Const<2>>]

The points of this polyline.

source

pub fn edges(&self) -> &[PolylineEdge<N>]

The edges of this polyline.

source

pub fn oriented(&self) -> bool

Whether this polyline is considered is oriented or not.

By default a polyline is not oriented.

source

pub fn set_oriented(&mut self, oriented: bool)

Whether this polyline is considered as oriented or not.

This is determined at the initialization of the polyline.

source

pub fn edge_containing_feature(&self, id: FeatureId) -> usize

Face containing feature.

source

pub fn segment_feature_to_polyline_feature( &self, edge_id: usize, feature: FeatureId ) -> FeatureId

Converts a segment FeatureId to a polyline FeatureId.

source

pub fn edge_segment(&self, i: usize) -> Segment<N>

The segment of the i-th edge on this polyline.

source

pub fn segment_at(&self, i: usize) -> Segment<N>

Gets the i-th polyline element.

source

pub fn bvt(&self) -> &BVT<usize, AABB<N>>

The optimization structure used by this polyline.

source

pub fn vertex_tangent_cone_contains_dir( &self, i: usize, deformations: Option<&[N]>, dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>> ) -> bool

Tests that the given dir is on the tangent cone of the ith vertex of this polyline.

source

pub fn transform_by(&mut self, transform: &Isometry<N, Unit<Complex<N>>, 2>)

Applies in-place a transformation to this polyline.

source

pub fn transformed(self, t: &Isometry<N, Unit<Complex<N>>, 2>) -> Polyline<N>

Applies a transformation to this polyline.

source

pub fn scale_by( &mut self, scale: &Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>> )

Applies in-place a non-uniform scale to this polyline.

source

pub fn scaled( self, s: &Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>> ) -> Polyline<N>

Applies a non-uniform scale to this polyline.

source

pub fn is_backface(&self, feature: FeatureId) -> bool

Returns true if the given feature is a FeatureId::Face and identifies a backface of this polyline.

source

pub fn vertex_tangent_cone_polar_contains_dir( &self, i: usize, dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>, sin_ang_tol: N ) -> bool

Tests that the given dir is on the polar of the tangent cone of the ith vertex of this polyline.

source

pub fn edge_tangent_cone_contains_dir( &self, i: usize, deformations: Option<&[N]>, dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>> ) -> bool

Tests that the given dir is on the tangent cone of the ith edge of this polyline.

source

pub fn edge_tangent_cone_polar_contains_dir( &self, i: usize, dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>, cos_ang_tol: N ) -> bool

Tests whether the polar of the tangent cone of the i-th edge of this polyline contains the direction dir considering the cosinus of an angular tolerance cos_ang_tol.

source

pub fn tangent_cone_polar_contains_dir( &self, _feature: FeatureId, _dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>>, _sin_ang_tol: N, _cos_ang_tol: N ) -> bool

(Not yet implemented) Tests whether the polar of the tangent cone of the specified feature of this polyline contains the direction dir considering the sinus and cosinus of an angular tolerance.

Trait Implementations§

source§

impl<N> Clone for Polyline<N>where N: Clone + RealField + Copy,

source§

fn clone(&self) -> Polyline<N>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<N> CompositeShape<N> for Polyline<N>where N: RealField + Copy,

source§

fn nparts(&self) -> usize

The number of sub-shape in this composide shape.
source§

fn map_part_at( &self, i: usize, m: &Isometry<N, Unit<Complex<N>>, 2>, f: &mut dyn FnMut(&Isometry<N, Unit<Complex<N>>, 2>, &(dyn Shape<N> + 'static)) )

Applies a transformation matrix and a function to each sub-shape of this concave shape.
source§

fn map_part_and_preprocessor_at( &self, i: usize, m: &Isometry<N, Unit<Complex<N>>, 2>, prediction: &ContactPrediction<N>, f: &mut dyn FnMut(&Isometry<N, Unit<Complex<N>>, 2>, &(dyn Shape<N> + 'static), &dyn ContactPreprocessor<N>) )

Applies a transformation matrix and a function to each sub-shape of this concave shape.
source§

fn aabb_at(&self, i: usize) -> AABB<N>

Gets the AABB of the shape identified by the index i.
source§

fn bvh(&self) -> BVHImpl<'_, N, usize, AABB<N>>

Gets the acceleration structure of the concave shape.
source§

impl<N> DeformableShape<N> for Polyline<N>where N: RealField + Copy,

source§

fn set_deformations(&mut self, coords: &[N])

Updates all the degrees of freedom of this shape.

source§

fn deformations_type(&self) -> DeformationsType

The type of degrees of freedom this shape has.
source§

fn update_local_approximation( &self, coords: &[N], approx: &mut LocalShapeApproximation<N> )

Updates the given local approximation of this shape.
source§

impl<'de, N> Deserialize<'de> for Polyline<N>where N: RealField + Copy + Deserialize<'de>,

source§

fn deserialize<__D>( __deserializer: __D ) -> Result<Polyline<N>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<N> HasBoundingVolume<N, AABB<N>> for Polyline<N>where N: RealField + Copy,

source§

fn bounding_volume(&self, m: &Isometry<N, Unit<Complex<N>>, 2>) -> AABB<N>

The bounding volume of self transformed by m.
source§

fn local_bounding_volume(&self) -> AABB<N>

The bounding volume of self.
source§

impl<N> HasBoundingVolume<N, BoundingSphere<N>> for Polyline<N>where N: RealField + Copy,

source§

fn bounding_volume( &self, m: &Isometry<N, Unit<Complex<N>>, 2> ) -> BoundingSphere<N>

The bounding volume of self transformed by m.
source§

fn local_bounding_volume(&self) -> BoundingSphere<N>

The bounding volume of self.
source§

impl<N> PointQuery<N> for Polyline<N>where N: RealField + Copy,

source§

fn project_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, point: &OPoint<N, Const<2>>, solid: bool ) -> PointProjection<N>

Projects a point on self transformed by m.
source§

fn project_point_with_feature( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, point: &OPoint<N, Const<2>> ) -> (PointProjection<N>, FeatureId)

Projects a point on the boundary of self transformed by m and retuns the id of the feature the point was projected on.
source§

fn contains_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, point: &OPoint<N, Const<2>> ) -> bool

Tests if the given point is inside of self transformed by m.
source§

fn distance_to_point( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, pt: &OPoint<N, Const<2>>, solid: bool ) -> N

Computes the minimal distance between a point and self transformed by m.
source§

impl<N> PointQueryWithLocation<N> for Polyline<N>where N: RealField + Copy,

§

type Location = (usize, SegmentPointLocation<N>)

Additional shape-specific projection information Read more
source§

fn project_point_with_location( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, point: &OPoint<N, Const<2>>, _: bool ) -> (PointProjection<N>, <Polyline<N> as PointQueryWithLocation<N>>::Location)

Projects a point on self transformed by m.
source§

impl<N> RayCast<N> for Polyline<N>where N: RealField + Copy,

source§

fn toi_with_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N, _: bool ) -> Option<N>

Computes the time of impact between this transform shape and a ray.
source§

fn toi_and_normal_with_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N, _: bool ) -> Option<RayIntersection<N>>

Computes the time of impact, and normal between this transformed shape and a ray.
source§

fn intersects_ray( &self, m: &Isometry<N, Unit<Complex<N>>, 2>, ray: &Ray<N>, max_toi: N ) -> bool

Tests whether a ray intersects this transformed shape.
source§

impl<N> Serialize for Polyline<N>where N: RealField + Copy + Serialize,

source§

fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<N> Shape<N> for Polyline<N>where N: RealField + Copy,

source§

fn aabb(&self, m: &Isometry<N, Unit<Complex<N>>, 2>) -> AABB<N>

The AABB of self transformed by m.
source§

fn local_aabb(&self) -> AABB<N>

The AABB of self.
source§

fn bounding_sphere( &self, m: &Isometry<N, Unit<Complex<N>>, 2> ) -> BoundingSphere<N>

The bounding sphere of self transformed by m.
source§

fn as_ray_cast(&self) -> Option<&dyn RayCast<N>>

The RayCast implementation of self.
source§

fn as_point_query(&self) -> Option<&dyn PointQuery<N>>

The PointQuery implementation of self.
source§

fn as_composite_shape(&self) -> Option<&dyn CompositeShape<N>>

The composite shape representation of self if applicable.
source§

fn is_composite_shape(&self) -> bool

Whether self uses a composite shape-based representation.
source§

fn as_deformable_shape(&self) -> Option<&dyn DeformableShape<N>>

The deformable shape representation of self if applicable.
source§

fn as_deformable_shape_mut(&mut self) -> Option<&mut dyn DeformableShape<N>>

The mutable deformable shape representation of self if applicable.
source§

fn is_deformable_shape(&self) -> bool

Whether self uses a composite shape-based representation.
source§

fn tangent_cone_contains_dir( &self, _feature: FeatureId, _m: &Isometry<N, Unit<Complex<N>>, 2>, _deformations: Option<&[N]>, _dir: &Unit<Matrix<N, Const<nalgebra::::base::dimension::U2::{constant#0}>, Const<1>, ArrayStorage<N, 2, 1>>> ) -> bool

Check if if the feature _feature of the i-th subshape of self transformed by m has a tangent cone that contains dir at the point pt.
source§

fn subshape_containing_feature(&self, id: FeatureId) -> usize

Returns the id of the subshape containing the specified feature. Read more
source§

fn local_bounding_sphere(&self) -> BoundingSphere<N>

The bounding sphere of self.
source§

fn as_convex_polyhedron(&self) -> Option<&dyn ConvexPolyhedron<N>>

The convex polyhedron representation of self if applicable.
source§

fn as_support_map(&self) -> Option<&dyn SupportMap<N>>

The support mapping of self if applicable.
source§

fn is_convex_polyhedron(&self) -> bool

Whether self uses a convex polyhedron representation.
source§

fn is_support_map(&self) -> bool

Whether self uses a support-mapping based representation.

Auto Trait Implementations§

§

impl<N> RefUnwindSafe for Polyline<N>where N: RefUnwindSafe,

§

impl<N> Send for Polyline<N>

§

impl<N> Sync for Polyline<N>

§

impl<N> Unpin for Polyline<N>where N: Unpin,

§

impl<N> UnwindSafe for Polyline<N>where N: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for Twhere T: Any,

§

fn into_any(self: Box<T, Global>) -> Box<dyn Any, Global>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T, Global>) -> Rc<dyn Any, Global>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
§

impl<T> DowncastSync for Twhere T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T, Global>) -> Arc<dyn Any + Send + Sync, Global>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
§

impl<T> Finalize for T

§

unsafe fn finalize_raw(data: *mut ())

Safety Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

impl<SS, SP> SupersetOf<SS> for SPwhere SS: SubsetOf<SP>,

§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> UserData for Twhere T: Clone + Any + Send + Sync,

source§

fn clone_boxed(&self) -> Box<dyn UserData, Global>

Clone this trait-object.
source§

fn to_any(&self) -> Box<dyn Any + Send + Sync, Global>

Clone as its super-trait trait objects.
source§

fn as_any(&self) -> &(dyn Any + Send + Sync + 'static)

Downcast to Any.
§

impl<T> Component for Twhere T: Send + Sync + 'static,

source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,