[][src]Struct myelin_engine::prelude::Polygon

pub struct Polygon { /* fields omitted */ }

A convex polygon.

Can either be constructed using a PolygonBuilder or with Polygon::try_new.

Methods

impl Polygon[src]

pub fn try_new(vertices: Vec<Point>) -> Result<Polygon, ()>[src]

Creates a new Polygon from the given Points.

Errors

This method will return an error if the number of configured vertices is less than three (as the resulting Polygon would not be two-dimensional), or if the resulting Polygon is not convex.

pub fn vertices(&self) -> &[Point][src]

Returns the vertices of the polygon

pub fn translate(&self, translation: Point) -> Polygon[src]

Apply translation specified by translation, represented as a relative point

pub fn rotate_around_point(&self, rotation: Radians, point: Point) -> Polygon[src]

Rotate polygon by a rotation around a point

pub fn contains_point(&self, point: Point) -> bool[src]

Checks if a given point rests inside the polygon

pub fn aabb(&self) -> Aabb[src]

Returns an Aabb which fully contains this polygon.

Panics

Panics if the floating-point values representing the vertices' coordinates are not comparable, e.g. NaN or if the polygon has no vertices. The latter should never occur, because the constructor validates that the polygon is valid.

Trait Implementations

impl<'de> Deserialize<'de> for Polygon[src]

impl Default for Polygon[src]

impl Serialize for Polygon[src]

impl PartialEq<Polygon> for Polygon[src]

impl Debug for Polygon[src]

impl Clone for Polygon[src]

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

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Polygon

impl Sync for Polygon

Blanket Implementations

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> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Downcast for T where
    T: Any

impl<T> UserData for T where
    T: Send + Sync + Clone + Any
[src]