[][src]Trait linear_sim::object::Bounded

pub trait Bounded: Object + Shape<f64> {
    fn bound(&self) -> &Bound;
fn bound_mut(&mut self) -> &mut Bound; fn hit_test(&self, line_segment: &Simplex1<f64>) -> Option<Point3<f64>> { ... } }

A bounded object

Required methods

fn bound(&self) -> &Bound

fn bound_mut(&mut self) -> &mut Bound

Loading content...

Provided methods

fn hit_test(&self, line_segment: &Simplex1<f64>) -> Option<Point3<f64>>

NOTE: tangent 'intersections' are ignored

Loading content...

Implementors

impl Bounded for Dynamic[src]

fn hit_test(&self, line_segment: &Simplex1<f64>) -> Option<Point3<f64>>[src]

impl Bounded for Static[src]

fn hit_test(&self, line_segment: &Simplex1<f64>) -> Option<Point3<f64>>[src]

Loading content...