From ee9688da997fc6e7d7aece39d5da23c99618dc21 Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Tue, 12 Apr 2022 10:02:01 -0300 Subject: Cleanup: redundant logical not Overlooked at rB0ebcc711f. The logical not in this case was only applied to the left hand side of the comparison. --- source/blender/blenkernel/intern/camera.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'source') diff --git a/source/blender/blenkernel/intern/camera.c b/source/blender/blenkernel/intern/camera.c index 3897df9f05f..32925168437 100644 --- a/source/blender/blenkernel/intern/camera.c +++ b/source/blender/blenkernel/intern/camera.c @@ -698,12 +698,12 @@ static bool camera_frame_fit_calc_from_data(CameraParams *params, add_v3_v3v3(plane_isect_1_other, plane_isect_1, plane_isect_1_no); add_v3_v3v3(plane_isect_2_other, plane_isect_2, plane_isect_2_no); - if (!isect_line_line_v3(plane_isect_1, - plane_isect_1_other, - plane_isect_2, - plane_isect_2_other, - plane_isect_pt_1, - plane_isect_pt_2) != 0) { + if (isect_line_line_v3(plane_isect_1, + plane_isect_1_other, + plane_isect_2, + plane_isect_2_other, + plane_isect_pt_1, + plane_isect_pt_2) == 0) { return false; } -- cgit v1.2.3