mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-03 01:50:41 +08:00
9 lines
105 B
Python
9 lines
105 B
Python
# Create an Arc
|
|
arc = lv.arc(lv.scr_act())
|
|
arc.set_end_angle(200)
|
|
arc.set_size(150, 150)
|
|
arc.center()
|
|
|
|
|
|
|