Struct mgf::Intersection[][src]

pub struct Intersection {
    pub p: Point3<f32>,
    pub t: f32,
}

A collision between a non-volumetric object and a volumetric object.

Fields

The point of intersection.

The time of intersection relative to the velocity of the non-volumetric object.

Trait Implementations

impl Copy for Intersection
[src]

impl Clone for Intersection
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Intersection
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations