1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 14:57:35 +00:00

PixelPaint: Refactor falloff computation and extend hardness range

This commit is contained in:
r00ster91 2021-12-18 20:33:38 +01:00 committed by Brian Gianforcaro
parent 7fae46361b
commit b6d921f682
4 changed files with 14 additions and 7 deletions

View file

@ -50,8 +50,9 @@ void EraseTool::draw_point(Gfx::Bitmap& bitmap, Gfx::Color const& color, Gfx::In
continue;
if (distance >= size())
continue;
auto old_color = bitmap.get_pixel(x, y);
auto falloff = (1.0 - double { distance / size() }) * (1.0 / (100 - hardness()));
auto falloff = get_falloff(distance);
auto new_color = old_color.interpolate(color, falloff);
bitmap.set_pixel(x, y, new_color);
}
@ -91,7 +92,7 @@ GUI::Widget* EraseTool::get_properties_widget()
hardness_label.set_fixed_size(80, 20);
auto& hardness_slider = hardness_container.add<GUI::ValueSlider>(Orientation::Horizontal, "%");
hardness_slider.set_range(1, 99);
hardness_slider.set_range(1, 100);
hardness_slider.set_value(hardness());
hardness_slider.on_change = [&](int value) {