[][src]Struct nannou::geom::tri::Tri

pub struct Tri<V = Default>(pub [V; 3]);

A triangle as three vertices.

Methods

impl<V> Tri<V> where
    V: Vertex
[src]

pub fn from_index_tri(vertices: &[V], indices: &[usize; 3]) -> Self where
    V: Vertex
[src]

Create a Tri by indexing into the given buffer.

Panics if any of the given indices are out of range of the given vertices slice.

pub fn from_vertices<I>(vertices: I) -> Option<Self> where
    I: IntoIterator<Item = V>, 
[src]

Create a Tri from the next three vertices yielded by the given vertices iterator.

Returns None if there were not at least 3 vertices in the given iterator.

Important traits for Vertices<V>
pub fn vertices(self) -> Vertices<V>[src]

Produce an iterator yielding each of the vertices of the triangle.

pub fn centroid(self) -> V where
    V: EuclideanSpace
[src]

Produce the centroid of the triangle aka the "mean"/"average" of all the points.

pub fn map_vertices<F, V2>(self, map: F) -> Tri<V2> where
    F: FnMut(V) -> V2, 
[src]

Maps the underlying vertices to a new type and returns the resulting Tri.

impl<V> Tri<V> where
    V: Vertex2d
[src]

pub fn contains(&self, v: &V) -> bool where
    V: Vertex2d
[src]

Returns true if the given 2D vertex is contained within the 2D Tri.

Example

let a = Point2 { x: -0.5, y: 0.0 };
let b = Point2 { x: 0.0, y: 1.0 };
let c = Point2 { x: 0.5, y: -0.75 };
let tri = Tri([a, b, c]);
assert!(tri.contains(&Point2 { x: 0.0, y: 0.0 }));
assert!(!tri.contains(&Point2 { x: 3.0, y: 3.0 }));

pub fn bounding_rect(self) -> Rect<V::Scalar> where
    V: Vertex2d
[src]

The bounding Rect of the triangle.

pub fn bounding_cuboid(self) -> Cuboid<V::Scalar> where
    V: Vertex3d
[src]

The bounding Rect of the triangle.

Trait Implementations

impl<V: PartialEq> PartialEq<Tri<V>> for Tri<V>[src]

impl<V> AsRef<Tri<V>> for Tri<V> where
    V: Vertex
[src]

impl<V> AsRef<[V; 3]> for Tri<V> where
    V: Vertex
[src]

impl<S> From<Tri<Vector3<S>>> for Tri<S> where
    S: BaseFloat
[src]

impl<V> From<[V; 3]> for Tri<V> where
    V: Vertex
[src]

impl<V> From<(V, V, V)> for Tri<V> where
    V: Vertex
[src]

impl<V: Clone> Clone for Tri<V>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<V: Eq> Eq for Tri<V>[src]

impl<V> Into<[V; 3]> for Tri<V> where
    V: Vertex
[src]

impl<V> Into<(V, V, V)> for Tri<V> where
    V: Vertex
[src]

impl<V: Copy> Copy for Tri<V>[src]

impl<V: Debug> Debug for Tri<V>[src]

impl<V> Deref for Tri<V> where
    V: Vertex
[src]

type Target = [V; 3]

The resulting type after dereferencing.

impl<V: Hash> Hash for Tri<V>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0[src]

Feeds a slice of this type into the given [Hasher]. Read more

Auto Trait Implementations

impl<V> Send for Tri<V> where
    V: Send

impl<V> Sync for Tri<V> where
    V: Sync

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> NodeId for T where
    T: 'static + Copy + Clone + PartialEq<T> + Eq + Hash + Send
[src]

impl<T> Style for T where
    T: Any + Debug + PartialEq<T>, 
[src]

impl<T> Content for T[src]

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

impl<T> Erased for T

impl<S> FromSample<S> for S[src]

impl<T, U> ToSample<U> for T where
    U: FromSample<T>, 
[src]

impl<S, T> Duplex<S> for T where
    T: FromSample<S> + ToSample<S>, 
[src]

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.

impl<T> SetParameter for T

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 

Sets value as a parameter of self.