[][src]Struct collision::primitive::ConvexPolygon

pub struct ConvexPolygon<S> {
    pub vertices: Vec<Point2<S>>,
}

Convex polygon primitive.

Can contain any number of vertices, but a high number of vertices will affect performance of course. Vertices need to be in CCW order.

Fields

vertices: Vec<Point2<S>>

Vertices of the convex polygon.

Methods

impl<S> ConvexPolygon<S>[src]

pub fn new(vertices: Vec<Point2<S>>) -> Self[src]

Create a new convex polygon from the given vertices. Vertices need to be in CCW order.

Trait Implementations

impl<S> Continuous<Ray<S, Point2<S>, Vector2<S>>> for ConvexPolygon<S> where
    S: BaseFloat
[src]

type Result = Point2<S>

Result returned by the intersection test

fn intersection(&self, ray: &Ray2<S>) -> Option<Point2<S>>[src]

Ray must be in object space

impl<S> Discrete<Ray<S, Point2<S>, Vector2<S>>> for ConvexPolygon<S> where
    S: BaseFloat
[src]

fn intersects(&self, ray: &Ray2<S>) -> bool[src]

Ray must be in object space

impl<S> ComputeBound<Aabb2<S>> for ConvexPolygon<S> where
    S: BaseFloat
[src]

impl<S> Primitive for ConvexPolygon<S> where
    S: BaseFloat
[src]

type Point = Point2<S>

Point type

impl<S: PartialEq> PartialEq<ConvexPolygon<S>> for ConvexPolygon<S>[src]

impl<S: Clone> Clone for ConvexPolygon<S>[src]

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

Performs copy-assignment from source. Read more

impl<S> From<ConvexPolygon<S>> for Primitive2<S>[src]

impl<S: Debug> Debug for ConvexPolygon<S>[src]

Auto Trait Implementations

impl<S> Send for ConvexPolygon<S> where
    S: Send

impl<S> Sync for ConvexPolygon<S> where
    S: Sync

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.