[][src]Function lasy::interpolate_path

pub fn interpolate_path<'a, P, E, R>(
    points: &'a [P],
    edges: E,
    target_points: u32,
    conf: &'a InterpolationConfig,
    output_points: &mut Vec<R>
) where
    P: Clone + Into<R> + Position + Weight,
    E: IntoIterator<Item = Segment>,
    R: Blanked + Clone + Lerp<Scalar = f32>, 

The same as interpolate_profiled_path, but performs the path profiling step internally prior to interpolation.