Fix: Incorrect coordinates used in BLI_rct*_isect_segment functions

Ref D15330.
This commit is contained in:
Siddhartha Jejurkar 2022-07-12 19:27:48 +10:00 committed by Thomas Dinges
parent ee57ac8abf
commit c07e9e0828
Notes: blender-bot 2023-12-22 20:14:11 +01:00
Referenced by issue #98661, 3.2: Potential candidates for corrective releases
1 changed files with 2 additions and 2 deletions

View File

@ -265,7 +265,7 @@ bool BLI_rcti_isect_segment(const rcti *rect, const int s1[2], const int s2[2])
/* diagonal: [/] */
tvec1[0] = rect->xmin;
tvec1[1] = rect->ymin;
tvec2[0] = rect->xmin;
tvec2[0] = rect->xmax;
tvec2[1] = rect->ymax;
if (isect_segments_i(s1, s2, tvec1, tvec2)) {
return true;
@ -311,7 +311,7 @@ bool BLI_rctf_isect_segment(const rctf *rect, const float s1[2], const float s2[
/* diagonal: [/] */
tvec1[0] = rect->xmin;
tvec1[1] = rect->ymin;
tvec2[0] = rect->xmin;
tvec2[0] = rect->xmax;
tvec2[1] = rect->ymax;
if (isect_segments_fl(s1, s2, tvec1, tvec2)) {
return true;