Creative Coding 習作 2024/5/24 - Kaigi on Rails 2024 logo
code:ruby
def setup
createCanvas(400, 400)
background("#fced4f")
frameRate(5)
end
def draw
translate(width / 2, height / 2)
background(255)
draw_kor_ruby
end
def draw_kor_ruby
background(214, 211, 208)
stroke(0)
fill(0)
beginShape()
vertex(-80, -150)
vertex(80, -150)
vertex(170, 0)
vertex(0, 150)
vertex(-170, 0)
vertex(-80, -150)
endShape(CLOSE)
noStroke()
fill(254, 64, 83)
triangle(30, -150, -171, 0, -69, 90)
noStroke()
fill(0, 197, 218)
triangle(30, -150, 171, 0, 69, 90)
end
https://scrapbox.io/files/66529c86848e60001ca29ea6.png