LIHPC-Computational-Geometry/tune

graph bounding box computation is incorrect

nicolaslg opened this issue · 0 comments

x_max is not updated when x_min is. There is the same problem with the y_max value.

if v.x < x_min:
    x_min = v.x
elif v.x > x_max:
    x_max = v.x