Code Sketch


Cool Thing 4
By: Reyaansh Seth
Category: Art
clear()
var clr = ColorMaker.hsla(0, 1.00, 0.5, 0.36)
setSpeed(superFast)
setPenColor(darkGray)
repeat(18) {
    setFillColor(randomColor.fadeOut(0.5))
    repeat(5) {
        repeat(4){
            forward(100)
            right()
        }
        forward(100)
        right(360 / 5) // this makes a pentagon
    }
    clr=clr.spin(20)
    right(20) 
}