Skip to content

Commit 26751ed

Browse files
committed
made main.py global updating
1 parent 53e5b20 commit 26751ed

File tree

2 files changed

+17
-12
lines changed

2 files changed

+17
-12
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.pyc
33
Shapes/*/__pycache__/*.pyc
44
Shapes/**/__pycache__/*.pyc
5+
*.nicegui

main.py

+16-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
import math
3-
from nicegui import ui
3+
from nicegui import ui, app
44
from svg import SVG
55
from Shapes.AlphaMask.alphamask import AlphaMask
66
from Shapes.Circle.circle import Circle
@@ -13,17 +13,21 @@
1313
from Shapes.Clip.clip import Clip
1414
from Shapes.Group.group import Group
1515

16-
svg= SVG().style("border: 1px solid black;")
1716

18-
with svg:
19-
group = Group()
20-
with group:
21-
Circle(50, 50, 20, fill="red")
22-
Rectangle(100, 100, 50, 50, fill="green")
23-
Line(150, 150, 200, 200, stroke="blue", stroke_width=5)
24-
NGon(250, 250, 5, 50, fill="yellow")
25-
# group.move_group(20, 0)
26-
Rectangle(0, 0, 20, 20, fill="black").on("svg:pointerdown", lambda: group.move_group(20, 0))
2717

18+
def main():
19+
svg= SVG().style("border: 1px solid black;")
2820

29-
ui.run()
21+
22+
with svg:
23+
group = Group()
24+
with group:
25+
Circle(50, 50, 20, fill="red")
26+
Rectangle(100, 100, 50, 50, fill="green")
27+
Line(150, 150, 200, 200, stroke="blue", stroke_width=5)
28+
NGon(250, 250, 5, 50, fill="yellow")
29+
Rectangle(0, 0, 20, 20, fill="black").on("svg:pointerdown", lambda: group.move_group(20, 0))
30+
31+
32+
main()
33+
ui.run(on_air=True)

0 commit comments

Comments
 (0)