Files
Minint/Report/lab2/uml/lr2-selection-copy-paste.puml
2026-04-07 21:00:49 +03:00

27 lines
809 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
:Пользователь выбирает Select;
:Формирование прямоугольника выделения;
if (Copy/Cut?) then (да)
:Пройти выделенную область;
:Преобразовать индексы в RGBA;
:Сохранить ClipboardFragment;
if (Cut?) then (да)
:Очистить выделенную область (индекс 0);
endif
endif
if (Paste?) then (да)
:Показать "плавающий" фрагмент;
:Пользователь задаёт позицию;
:CommitPaste -> запись в слой;
:Прозрачные пиксели пропустить;
endif
:Обновить холст;
stop
@enduml