Fix T41986: polyfill fails with axis aligned verts

This commit is contained in:
Campbell Barton 2014-09-28 21:11:16 +10:00
parent c729ce7e05
commit fa1e6c5442
Notes: blender-bot 2023-05-22 12:40:41 +02:00
Referenced by issue #42064, Directional Blur incorrect behavior (XY axis banding artifacts)
Referenced by issue #41986, Scanfill fails with axis aligned verts
1 changed files with 1 additions and 1 deletions

View File

@ -567,7 +567,7 @@ static void pf_triangulate(PolyFill *pf)
#ifdef USE_CLIP_EVEN
#ifdef USE_CLIP_SWEEP
pi_ear_init = reverse ? pi_next->next : pi_prev->prev;
pi_ear_init = reverse ? pi_prev->prev : pi_next->next;
#else
pi_ear_init = pi_next->next;
#endif