プリン

by nag reddy

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.9/p5.js"></script>

CoffeeScript

window.setup = ->
    createCanvas 640, 480
window.draw = ->
    ellipseMode CENTER
    fill "Chocolate"
    ellipse 270, 210, 270, 270
    ellipse 95, 110, 130, 120
    ellipse 445, 110, 130, 120
    
    fill "bisque"
    ellipse 270, 285, 120, 90
    
    fill "black"
    ellipse 270, 273, 30, 25
    
    fill "white"
    ellipse 260, 275, 6, 4

        

    #fill "Chocolate"
    #triangle 250,270, 290,270, 270,300 
    #triangle 260,285, 235,300, 255,310 
    #triangle 280,285, 303,295, 290,305 
    noFill()
    arc 245,280, 45, 45,  0, HALF_PI 
    arc 290,280, 45, 45,  HALF_PI, PI 
    
    rectMode CORNERS
    fill "black"
    rect 210,210, 240,240,4
    rect 300,210, 330,240,4