1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 10:57:36 +00:00

Demos: Add Mandelbrot demo

This adds a very rudimentary Mandelbrot viewer. It supports zooming
and pretty much nothing else. Not even color smoothing or super
sampling.
This commit is contained in:
Gunnar Beutner 2021-05-17 10:32:13 +02:00 committed by Andreas Kling
parent 7e799529b9
commit 51db8085f8
6 changed files with 230 additions and 0 deletions

View file

@ -0,0 +1,6 @@
set(SOURCES
Mandelbrot.cpp
)
serenity_app(Mandelbrot ICON app-mandelbrot)
target_link_libraries(Mandelbrot LibGUI LibCore LibGfx)