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

Same as is_right_or_coincident_eps using default epsilon.

Default epsilon is fuzzy_epsilon from FuzzyEq trait.