Skip to main content

dot_product_three_points

Function dot_product_three_points 

Source
pub fn dot_product_three_points<T>(
    pt1: Point<T>,
    pt2: Point<T>,
    pt3: Point<T>,
) -> f64
where T: Copy + ToF64,
Expand description

Calculate dot product of two vectors formed by three points Direct port from clipper.core.h line 822