Pookkalam by NITHIN STEVEN

Code

#Read the Comments for the clear picture , Happy Onam 😇


healing_earth = circle(r=150,fill='darkgreen')
#Outer circle represents earth's own process of healing into green 

layer1 = rectangle(w=210,h=210,fill="red", stroke="red") | repeat (20,rotate(50)) | scale (.95)
#First layer of fire : deforestation

layer2= rectangle(w=192,h=192, fill="orange",stroke="orange")|rotate(15)| repeat(20,rotate(50))
#second layer of fire : Pollution

layer3=rectangle(w=178,h=178,fill="yellow",stroke="yellow")|repeat(20,rotate(50))
#third layer of fire : Burning of fozzil fuels

layer4=rectangle(w=166,h=166,fill="lightyellow",stroke="lightyellow")|rotate(15)|repeat(20,rotate(50))
#fourth layer of fire :over population


hell=layer1+layer2+layer3+layer4
#Represent how earth is turned into a living hell by human intervention


e1=rectangle(h=165,w=30,fill='yellow',stroke_width=0.2)|repeat(15,rotate(40))
s1 = rectangle(h=209,w=109,fill='red',stroke='red')
s2 = s1 | rotate(45)
s3 = s1 | rotate(90)
s4 = s1 | rotate(135)
The_barrier = s1+s2+s3+s4
#represents the barrier created by corona to prevent further human influence into nature




spikes = circle(x=10, y=0, r=2.5, fill="darkgreen", stroke="lightgreen")| repeat(10, rotate(36))
connectors = rectangle(x=7, y=0, w=3,h=1, fill="darkgreen", stroke="green")| repeat(10, rotate(36))
body=circle(r=6,fill="lightgreen",stroke="darkgreen")
corona=spikes+connectors+body | translate(x=100) | repeat(8, rotate(45))| rotate(22.5)
# displays the network of virus that is restraining us inside our quarantine



human_population=ellipse(h=169,w=69,fill='darkred',stroke='black')|repeat(25,rotate(20))
#represents human population that gathered together to fight the pandemic


those_with_power=circle(x=10,r=2,fill="darkgreen") | (repeat(8,rotate(60))) 
those_with_greed=circle(x=19,r=2,fill="darkgreen") | (repeat(9,rotate(60))) 
system=spikes+connectors+body|scale(5) 
VIRUS=system + those_with_power + those_with_greed
#represents the real VIRUS - The people blinded by power and greed who manipulates the system for their own gain

show(healing_earth,hell,The_barrier,corona,human_population,VIRUS)