Ich will es jetzt in JS

This commit is contained in:
2026-01-24 11:58:25 +01:00
parent 6acf34db5c
commit cb50a66fbb
2 changed files with 136 additions and 1 deletions

View File

@@ -20,5 +20,6 @@ function draw()
# Zeichnet einen einzelnen Punkt (Pixel) bei x=200, y=200
# Da ein Pixel winzig ist, nutzt man oft ein kleines Rechteck
# oder die Point-Funktion.
draw(Rect(200, 200, 1, 1), :red, fill=true)
draw(Rect((200, 200), (1, 1)), colorant"red", fill=true)
end