diff --git a/curvepy/utilities.py b/curvepy/utilities.py index dd6200ef3d11c22f906e02e4640cbfbd615db9b2..fb807f53fc96bd684e172e3f87c5e44dd9fbdf0e 100644 --- a/curvepy/utilities.py +++ b/curvepy/utilities.py @@ -66,7 +66,7 @@ def collinear_check(a: np.ndarray, b: np.ndarray, c: np.ndarray) -> bool: """ return np.count_nonzero(np.cross(b - a, c - a)) == 0 - +# TODO revert "bug" def ratio(left_point: np.ndarray, col_point: np.ndarray, right_point: np.ndarray) -> float: """ Method to calculate the ratio of the three collinear points from the parameters.