> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://dflab.sketchpad.cc/sp/pad/view/ro.wgnVChEj0w1/rev.839
 * 
 * authors: 
 *   TEKOteko

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



//toda a gente! Apontem e riam que Delacroix não sabe desenhar rostos de perto!

/* @pjs preload="/static/uploaded_resources/p.10089/croixcroix.jpg"; */

PImage img = loadImage("/static/uploaded_resources/p.10089/croixcroix.jpg");

void setup() { 
   
    //comer iogurte no escuro
    
     size(303, 303);
    background(img);
    
    
    
    noStroke();
triangle(134, 142,134, 78, 153, 102);
triangle(134, 215,134, 304, 153, 200);

    fill(255,255,210);
    triangle(304, -184,304, 287, 153, 102);
    
    stroke(255,255,210);
    line(134,215, 300, 88)
    point(145,185);
    point(160, 172);
    point(175, 159);
    point(190, 146);
    
    fill(255);
    ellipse(114,4, 5, 5)
    ellipse(124,18, 2.5, 2.5)
    ellipse(134,30, 1.25, 1.25)
    
    noStroke();
    fill(0,255,255,50);
    rect(143,92,20,20,6);
    
    
    stroke(255,255,255);
  //iogurte
  textSize(21);
    fill(255);
  text("йогурт", 65, 287);




}