You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
105 B
Python
9 lines
105 B
Python
2 years ago
|
# Create an Arc
|
||
|
arc = lv.arc(lv.scr_act())
|
||
|
arc.set_end_angle(200)
|
||
|
arc.set_size(150, 150)
|
||
|
arc.center()
|
||
|
|
||
|
|
||
|
|