Files
Zivro/Report/lab4/uml/rasterization-and-output.puml

23 lines
869 B
Plaintext
Raw Permalink 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 Растеризация и вывод графического содержимого
start
:Выбрать тип фигуры (линия/эллипс/ломаная);
if (Линия?) then (да)
:Отсечение + инкрементальная\nрастеризация + толщина;
elseif (Эллипс/дуга?) then (да)
:Аналитическая проверка пикселей\nв ограничивающем прямоугольнике;
else (Ломаная)
:Растеризация сегментов;
if (Замкнута и filled?) then (да)
:Поиск seed-точек;\nFlood Fill (4-связность);
endif
endif
:Композиция результата в общий буфер;
:Передача буфера в текстуру UI;
:Отображение на холсте;
stop
@enduml