pub fn point_from_parametric<T>(
    p0: Vector2<T>,
    p1: Vector2<T>,
    t: T
) -> Vector2<T>
where T: Real,
Expand description

Returns the point on the line segment going from p0 to p1 at parametric value t.