Are you sure?
Do you want to delete “First try” permanently? You will not be able to undo this action.
import icons
import math
Square(color=['red', 'orange', 'yellow', 'green', 'dodgerblue', 'purple'])
#for i in range(1, 200, 1):
# x = i/2
# y = 50 + (math.sin(x/15)*30)
# Circle(x=x, y=y, width=1, height=1)
for vinkel in range(0, 360, 10):
radian = vinkel / 57.2958
x = 50 + (40 * math.cos(radian))
y = 50 + (40 * math.sin(radian))
icons.Heart(color='black', width=5, height=5, x=x, y=y)