Files
Minint/Report/lab2/uml/lr2-tools-and-fill.puml
2026-04-07 21:00:49 +03:00

25 lines
943 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
@startuml
title ЛР2 ИВ1: обработка инструментов рисования
start
:Событие мыши в PixelCanvas;
:Преобразование координат экрана -> пиксель;
if (Инструмент == Brush?) then (да)
:Вычислить маску кисти (круг);
:Записать выбранный индекс цвета;
elseif (Инструмент == Eraser?) then (да)
:Вычислить маску кисти (круг);
:Записать индекс 0 (прозрачный);
elseif (Инструмент == Fill?) then (да)
:Запустить FloodFillService.Fill;
:BFS по 4-связным соседям;
:Перекрасить только область target-индекса;
else (Select)
:Передать управление блоку выделения;
endif
:Обновить итоговый буфер и холст;
stop
@enduml