Seated Nude minimal art

Karl Rothermel


Based on: Seated Nude by Jean H Bevis, 1976

Category: experimental


Description:

This sketch is running in the browser.






/* 
Part of the ReCode Project (http://recodeproject.com)
Based on "Seated Nude" by Jean H Bevis
Originally published in "Computer Graphics and Art" v1n4, 1976
Copyright (c) 2013 Karl Rothermel - OSI/MIT license (http://recodeproject/license).
*/

/* @pjs pauseOnBlur="true"; */

void setup()
{
  size(280, 344); //1 cm corresponds to 20 units 140*172
  background(255);
  smooth();
  stroke(0);
  beginShape();
  curveVertex(34, 300); // the first control point
  curveVertex(34, 300); // is also the start point of curve
  curveVertex(54, 254);
  curveVertex(72, 224);
  curveVertex(86, 210);
  curveVertex(100, 200);
  curveVertex(110, 194);
  curveVertex(110, 194);
  endShape();
  
  beginShape();
  curveVertex(188, 230); // the first control point
  curveVertex(188, 230); // is also the start point of curve
  curveVertex(190, 220);
  curveVertex(196, 194);
  curveVertex(212, 166);
  curveVertex(218, 144); // the first control point
  curveVertex(218, 144); // is also the start point of curve
  endShape();
  
  fill(153);            
    rect(144,214,4,8,0,0,4,0);
 
}