Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'source/blender/editors/mask')
-rw-r--r--source/blender/editors/mask/mask_ops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mask/mask_ops.c b/source/blender/editors/mask/mask_ops.c
index cff0bcef38b..50f7466f7ed 100644
--- a/source/blender/editors/mask/mask_ops.c
+++ b/source/blender/editors/mask/mask_ops.c
@@ -614,7 +614,7 @@ static bool spline_under_mouse_get(const bContext *C,
}
}
}
- if (closest_dist_squared < SQUARE(threshold) && closest_spline != NULL) {
+ if (closest_dist_squared < square_f(threshold) && closest_spline != NULL) {
float diff_score;
if (ED_mask_find_nearest_diff_point(C,
mask,
@@ -629,7 +629,7 @@ static bool spline_under_mouse_get(const bContext *C,
NULL,
NULL,
&diff_score)) {
- if (SQUARE(diff_score) < closest_dist_squared) {
+ if (square_f(diff_score) < closest_dist_squared) {
return false;
}
}