lewitt 154

Sol LeWitt wall drawings in code.

sketch.js

/**
 * @author: @fabiantheblind
 * @license: MIT
 *
 * written for "Eingabe, Ausgabe. Grundlagen der prozessorientierten Gestaltung"
 * @FHP WS 2013/2014 by Moika Hoinkis
 *
 * create works of Sol LeWitt in Processing
 * http://www.massmoca.org/lewitt/grid.php
 */

// getting started with p5js
function setup(){
  // executed once
  var canvas = createCanvas(450,450);
  canvas.parent('sketch');

var gutter = 45; // the distance to the border

background(255); // just a color

var x = 0; // coordinate x
var y = 0; // coordinate y

x = gutter/2; // define x
y = gutter/2; // define y

noFill(); // we dont want anything to be filled
stroke(0);// this is a black stroke

rect(x, y, width - gutter, height - gutter); // draw a rectangle
stroke(color(145, 0, 0)); // change the strokecolor to a dark red (RGB)

var x1 = gutter; // coordinate x1
var y1 = gutter; // coordinate y1
var x2 = width-gutter; // coordinate x2
var y2 = height-gutter; // coordinate x2

/**
 * Now draw the center lines
 */
line(x1, y1, x2, y2);
line(x2, y1, x1, y2);
// saveFrame("lewitt-154.png");
// we ae done


}
function draw(){
  // executed all the time
}

index.html

<!doctype html>
<html lang="en">
  <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>{page.title}</title>
    <meta name="description" content="something">
    <meta name="author" content="me">
  </head>
  <body>
    <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.4.17/p5.min.js"></script>
    <script type="text/javascript" src="sketch.js"></script>
    <div id="sketch"></div>
    </body>
  </html>