Fix bug in assert in delaunay test.

Assert was trying to say x coords of arcs lined up, and didn't do that.
This commit is contained in:
Howard Trickey 2021-07-21 08:32:46 -04:00
parent 16804297e6
commit 3cfd6439c6
1 changed files with 1 additions and 1 deletions

View File

@ -1874,7 +1874,7 @@ void text_test(
vec2<T> start_co = b_vert[arc_origin_vert];
vec2<T> end_co = b_vert[arc_terminal_vert];
vec2<T> center_co = 0.5 * (start_co + end_co);
BLI_assert(start_co[0] == end_co[2]);
BLI_assert(start_co[0] == end_co[0]);
double radius = abs(math_to_double<T>(end_co[1] - center_co[1]));
double angle_delta = M_PI / (num_arc_points + 1);
int start_vert = b_before_arcs_in.vert.size() + arc * num_arc_points;