[][src]Struct vek::geom::repr_c::Disk

pub struct Disk<P, E> {
    pub center: Vec2<P>,
    pub radius: E,
}

Disk (2D), represented by center and radius.

Fields

center: Vec2<P>radius: E

Methods

impl<P, E> Disk<P, E>[src]

pub fn circumference(self) -> E where
    E: Copy + FloatConst + Mul<Output = E> + Add<Output = E>, 
[src]

Gets this disk's circumference.

pub fn area(self) -> E where
    E: Copy + FloatConst + Mul<Output = E>, 
[src]

Gets this disk's area.

impl<P, E> Disk<P, E>[src]

pub fn new(center: Vec2<P>, radius: E) -> Self[src]

Creates a new Disk from center and radius.

pub fn unit(center: Vec2<P>) -> Self where
    E: One
[src]

Creates a new Disk from center and a radius equal to one.

pub fn point(center: Vec2<P>) -> Self where
    E: Zero
[src]

Creates a new Disk from center and a radius equal to zero.

pub fn diameter(self) -> E where
    E: Copy + Add<Output = E>, 
[src]

Gets the value of twice the radius.

pub fn rect(self) -> Rect<P, E> where
    P: Sub<P, Output = P> + From<E> + Copy,
    E: Copy + Add<E, Output = E>, 
[src]

Gets the bounding rectangle for this shape.

impl<T> Disk<T, T> where
    T: Copy + Add<T, Output = T> + Sub<T, Output = T>, 
[src]

pub fn aabr(self) -> Aabr<T>[src]

Gets this shape's bounds.

impl<T: Real + Sum> Disk<T, T>[src]

pub fn contains_point(self, p: Vec2<T>) -> bool where
    T: PartialOrd
[src]

Does this shape contain the given point ?

pub fn collides_with_disk(self, other: Self) -> bool where
    T: PartialOrd
[src]

Does this shape collide with another ?

pub fn collision_vector_with_disk(self, other: Self) -> Vec2<T>[src]

Gets a vector that tells how much this shape penetrates another.

Trait Implementations

impl<P: Debug, E: Debug> Debug for Disk<P, E>[src]

impl<P: PartialEq, E: PartialEq> PartialEq<Disk<P, E>> for Disk<P, E>[src]

impl<P: Eq, E: Eq> Eq for Disk<P, E>[src]

impl<P: Hash, E: Hash> Hash for Disk<P, E>[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

impl<P: Copy, E: Copy> Copy for Disk<P, E>[src]

impl<P: Clone, E: Clone> Clone for Disk<P, E>[src]

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

Performs copy-assignment from source. Read more

impl<P: Default, E: Default> Default for Disk<P, E>[src]

Auto Trait Implementations

impl<P, E> Unpin for Disk<P, E> where
    E: Unpin,
    P: Unpin

impl<P, E> Sync for Disk<P, E> where
    E: Sync,
    P: Sync

impl<P, E> Send for Disk<P, E> where
    E: Send,
    P: Send

impl<P, E> UnwindSafe for Disk<P, E> where
    E: UnwindSafe,
    P: UnwindSafe

impl<P, E> RefUnwindSafe for Disk<P, E> where
    E: RefUnwindSafe,
    P: RefUnwindSafe

Blanket Implementations

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> Into<U> for T where
    U: From<T>, 
[src]

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

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.