pub fn is_right_or_coincident_eps<T>(
    p0: Vector2<T>,
    p1: Vector2<T>,
    point: Vector2<T>,
    epsilon: T
) -> bool
where T: Real,
Expand description

Returns true if point is right of a direction vector with fuzzy inclusion.

Returns true if point is right or fuzzy coincident with the direction vector defined by p1 - p0.

epsilon controls the fuzzy compare.