mirror of
https://github.com/Orama-Interactive/Pixelorama.git
synced 2025-02-13 01:03:07 +00:00
Update SelectionMap.gd
This commit is contained in:
parent
ccf4d6ffd2
commit
6c37c68acf
|
@ -188,8 +188,16 @@ func resize_bitmap_values(
|
||||||
for i in ellipse_select.size() / 2:
|
for i in ellipse_select.size() / 2:
|
||||||
i *= 2
|
i *= 2
|
||||||
var y := ellipse_select[i].y
|
var y := ellipse_select[i].y
|
||||||
var xmin := ellipse_select[i].x if ellipse_select[i].x < ellipse_select[i+1].x else ellipse_select[i+1].x
|
var xmin := (
|
||||||
var xmax := ellipse_select[i].x if ellipse_select[i].x >= ellipse_select[i+1].x else ellipse_select[i+1].x
|
ellipse_select[i].x
|
||||||
|
if ellipse_select[i].x < ellipse_select[i + 1].x
|
||||||
|
else ellipse_select[i + 1].x
|
||||||
|
)
|
||||||
|
var xmax := (
|
||||||
|
ellipse_select[i].x
|
||||||
|
if ellipse_select[i].x >= ellipse_select[i + 1].x
|
||||||
|
else ellipse_select[i + 1].x
|
||||||
|
)
|
||||||
|
|
||||||
if x_min[y] == null && x_max[y] == null:
|
if x_min[y] == null && x_max[y] == null:
|
||||||
x_min[y] = xmin
|
x_min[y] = xmin
|
||||||
|
@ -219,7 +227,9 @@ func resize_bitmap_values(
|
||||||
smaller_image.resize(new_size.x, new_size.y, Image.INTERPOLATE_BILINEAR)
|
smaller_image.resize(new_size.x, new_size.y, Image.INTERPOLATE_BILINEAR)
|
||||||
else:
|
else:
|
||||||
var resized_img := Image.create(new_size.x, new_size.y, false, smaller_image.get_format())
|
var resized_img := Image.create(new_size.x, new_size.y, false, smaller_image.get_format())
|
||||||
var new_ellipse_select := DrawingAlgos.get_ellipse_points_filled(Vector2.ZERO, Vector2i(new_size.x,new_size.y))
|
var new_ellipse_select := DrawingAlgos.get_ellipse_points_filled(
|
||||||
|
Vector2.ZERO, Vector2i(new_size.x, new_size.y)
|
||||||
|
)
|
||||||
for p in new_ellipse_select:
|
for p in new_ellipse_select:
|
||||||
resized_img.set_pixel(p.x, p.y, Color(1, 1, 1, 1))
|
resized_img.set_pixel(p.x, p.y, Color(1, 1, 1, 1))
|
||||||
smaller_image = resized_img
|
smaller_image = resized_img
|
||||||
|
|
Loading…
Reference in a new issue