Fix QA for rounding segments

This commit is contained in:
Seth Hillbrand 2021-06-03 10:18:46 -07:00
parent 7c14e4e967
commit de89505f02
1 changed files with 1 additions and 1 deletions

View File

@ -340,7 +340,7 @@ static const std::vector<SEG_VECTOR_DISTANCE_CASE> seg_vec_dist_cases = {
"At end (not collinear)",
{ { 0, 0 }, { 1000, 0 } },
{ 1000 + 200, 200 },
282, // sqrt(200^2 + 200^2), rounded down
283, // sqrt(200^2 + 200^2) = 282.8, rounded to nearest
},
};
// clang-format on