[Bf-blender-cvs] [41689bb3104] blender-v2.93-release: Fix: Incorrect coordinates used in BLI_rct*_isect_segment functions

Siddhartha Jejurkar noreply at git.blender.org
Tue Aug 2 10:43:18 CEST 2022


Commit: 41689bb310469d85d9eae59ca578f4a15dc0e80b
Author: Siddhartha Jejurkar
Date:   Tue Jul 12 19:27:48 2022 +1000
Branches: blender-v2.93-release
https://developer.blender.org/rB41689bb310469d85d9eae59ca578f4a15dc0e80b

Fix: Incorrect coordinates used in BLI_rct*_isect_segment functions

Ref D15330.

===================================================================

M	source/blender/blenlib/intern/rct.c

===================================================================

diff --git a/source/blender/blenlib/intern/rct.c b/source/blender/blenlib/intern/rct.c
index 35e24ecc785..8b6e6abc713 100644
--- a/source/blender/blenlib/intern/rct.c
+++ b/source/blender/blenlib/intern/rct.c
@@ -294,7 +294,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;
@@ -340,7 +340,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;



More information about the Bf-blender-cvs mailing list