Struct pixel_game_lib::Disk 
source · pub struct Disk<P, E> {
    pub center: Vec2<P>,
    pub radius: E,
}Expand description
Re-export vek types. Disk (2D), represented by center and radius.
Fields§
§center: Vec2<P>§radius: EImplementations§
source§impl<P, E> Disk<P, E>
 
impl<P, E> Disk<P, E>
sourcepub fn circumference(self) -> E
 
pub fn circumference(self) -> E
Gets this disk’s circumference.
source§impl<P, E> Disk<P, E>
 
impl<P, E> Disk<P, E>
sourcepub fn new(center: Vec2<P>, radius: E) -> Disk<P, E>
 
pub fn new(center: Vec2<P>, radius: E) -> Disk<P, E>
Creates a new
Disk
from center and radius.
sourcepub fn unit(center: Vec2<P>) -> Disk<P, E>where
    E: One,
 
pub fn unit(center: Vec2<P>) -> Disk<P, E>where
    E: One,
Creates a new
Disk
from center and a radius equal to one.
source§impl<T> Disk<T, T>
 
impl<T> Disk<T, T>
sourcepub fn contains_point(self, p: Vec2<T>) -> boolwhere
    T: PartialOrd,
 
pub fn contains_point(self, p: Vec2<T>) -> boolwhere
    T: PartialOrd,
Does this shape contain the given point ?
sourcepub fn collides_with_disk(self, other: Disk<T, T>) -> boolwhere
    T: PartialOrd,
 
pub fn collides_with_disk(self, other: Disk<T, T>) -> boolwhere
    T: PartialOrd,
Does this shape collide with another ?
sourcepub fn collision_vector_with_disk(self, other: Disk<T, T>) -> Vec2<T>
 
pub fn collision_vector_with_disk(self, other: Disk<T, T>) -> Vec2<T>
Gets a vector that tells how much this shape penetrates another.
Trait Implementations§
source§impl<'de, P, E> Deserialize<'de> for Disk<P, E>where
    P: Deserialize<'de>,
    E: Deserialize<'de>,
 
impl<'de, P, E> Deserialize<'de> for Disk<P, E>where
    P: Deserialize<'de>,
    E: Deserialize<'de>,
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<Disk<P, E>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>(
    __deserializer: __D
) -> Result<Disk<P, E>, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<P, E> PartialEq for Disk<P, E>
 
impl<P, E> PartialEq for Disk<P, E>
source§impl<P, E> Serialize for Disk<P, E>
 
impl<P, E> Serialize for Disk<P, E>
source§fn serialize<__S>(
    &self,
    __serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
    __S: Serializer,
 
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
impl<P, E> Copy for Disk<P, E>
impl<P, E> Eq for Disk<P, E>
impl<P, E> StructuralEq for Disk<P, E>
impl<P, E> StructuralPartialEq for Disk<P, E>
Auto Trait Implementations§
impl<P, E> RefUnwindSafe for Disk<P, E>where
    E: RefUnwindSafe,
    P: RefUnwindSafe,
impl<P, E> Send for Disk<P, E>
impl<P, E> Sync for Disk<P, E>
impl<P, E> Unpin for Disk<P, E>
impl<P, E> UnwindSafe for Disk<P, E>where
    E: UnwindSafe,
    P: UnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Compare self to 
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
 
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
 
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more