[][src]Struct mini_collide::Sphere

pub struct Sphere {
    pub center: Point,
    pub radius: f32,
}

A sphere

Fields

center: Point

The center of the sphere

radius: f32

The radius of the sphere

Methods

impl Sphere[src]

pub fn new(center: Point, radius: f32) -> Self[src]

Construct a sphere from a center point and a radius

Trait Implementations

impl Intersection<Ray> for Sphere[src]

impl Intersection<Sphere> for Ray[src]

impl Intersection<Sphere> for Plane[src]

impl Intersection<Plane> for Sphere[src]

impl Intersection<Sphere> for Sphere[src]

impl Intersection<Sphere> for Triangle[src]

impl Intersection<Triangle> for Sphere[src]

impl Debug for Sphere[src]

Auto Trait Implementations

impl Send for Sphere

impl Sync for Sphere

impl Unpin for Sphere

impl UnwindSafe for Sphere

impl RefUnwindSafe for Sphere

Blanket Implementations

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

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

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