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: E

Implementations§

source§

impl<P, E> Disk<P, E>

source

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

Gets this disk’s circumference.

source

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

Gets this disk’s area.

source§

impl<P, E> Disk<P, E>

source

pub fn new(center: Vec2<P>, radius: E) -> Disk<P, E>

Creates a new Disk from center and radius.

source

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

pub fn point(center: Vec2<P>) -> Disk<P, E>
where E: Zero,

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

source

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

Gets the value of twice the radius.

source

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

Gets the bounding rectangle for this shape.

source§

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

source

pub fn aabr(self) -> Aabr<T>

Gets this shape’s bounds.

source§

impl<T> Disk<T, T>
where T: Real<Output = T> + Add,

source

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

Does this shape contain the given point ?

source

pub fn collides_with_disk(self, other: Disk<T, T>) -> bool
where T: PartialOrd,

Does this shape collide with another ?

source

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<P, E> Clone for Disk<P, E>
where P: Clone, E: Clone,

source§

fn clone(&self) -> Disk<P, E>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

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

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

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

source§

fn default() -> Disk<P, E>

Returns the “default value” for a type. Read more
source§

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>,

Deserialize this value from the given Serde deserializer. Read more
source§

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

source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · source§

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

Feeds a slice of this type into the given Hasher. Read more
source§

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

source§

fn eq(&self, other: &Disk<P, E>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

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

source§

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
source§

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

source§

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

source§

impl<P, E> StructuralEq for Disk<P, E>

source§

impl<P, E> StructuralPartialEq for Disk<P, E>

Auto Trait Implementations§

§

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

§

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

§

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

§

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

§

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

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast<T> for T

§

fn downcast(&self) -> &T

source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> Upcast<T> for T

§

fn upcast(&self) -> Option<&T>

source§

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