1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//! Traits for support mapping based shapes.

use na::Unit;
use math::Point;

/// Traits of convex shapes representable by a support mapping function.
///
/// # Parameters:
///   * V - type of the support mapping direction argument and of the returned point.
pub trait SupportMap<P: Point, M> {
    /**
     * Evaluates the support function of the object.
     *
     * A support function is a function associating a vector to the shape point which maximizes
     * their dot product.
     */
    fn support_point(&self, transform: &M, dir: &P::Vector) -> P;

    /// Same as `self.support_point` except that `dir` is normalized.
    fn support_point_toward(&self, transform: &M, dir: &Unit<P::Vector>) -> P {
        self.support_point(transform, dir.as_ref())
    }

    // XXX: output into a dedicated structure instead of Vec.
    fn support_area_toward(&self, transform: &M, dir: &Unit<P::Vector>, _angle: P::Real, out: &mut Vec<P>) {
        out.push(self.support_point_toward(transform, dir))
    }
}