Les œuvres de François Morellet sont exécutées d’après un système : chaque choix est défini par un principe établi par avance. Il veut par là donner l’impression de contrôler la création artistique tout en laissant une part de hasard,… Lire la suite…
De Computer Graphics and Art vol2 n°3 page 10 // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol2 no3 pg 10 // by William Kolomyjec // « Boxes » // //… Lire la suite…
De Computer Graphics and Art vol2 n°3 page 28 // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol2 no3 pg 28 // Segrid // by John Roy // //… Lire la suite…
var tiles = [7]; var windowSize = 780; var tileSize = windowSize/15; function setup(){ createCanvas(windowSize,windowSize); createTiles(); noLoop(); } function draw(){ background(255); imageMode(CENTER); for(var i = 0; i < width; i+=tileSize){ for(var j = 0; j < height; j+=tileSize){… Lire la suite…
Inspiré par Computer Graphics and Art nov 1976 vol1 n°4 page 28 // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol1 no4 pg 28 // Untitled 1 (Computer graphics… Lire la suite…
function setup() { createCanvas(780,780); } // Draws a single cross. function drawCross(left, top, dim, thickness) { var offset_1 = dim/2 – thickness/2; var offset_2 = offset_1 + thickness; var offset_3 = dim; beginShape(); vertex(left + offset_1, top); vertex(left… Lire la suite…
Inspiré par Computer Graphics and Art vol3 n°2 page 16, « Untitled photoprint », 15″ x 19″ par by Aaron Marcus // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol3 no2 pg… Lire la suite…
Inspiré par Computer Graphics and Art vol3 n°4, 4e de couverture, « Hex Variations » de William Kolomyjec // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol3 no4 Back Cover // by… Lire la suite…
Inspiré par Computer Graphics and Art vol3 n°2 page 31, « Unimaginable Images » (from the « 196 Trapeziums Series ») de Vera Molnar // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol3 no2… Lire la suite…
Inspiré par Computer Graphics and Art vol3 n°2 page 31, « Unimaginable Images » (from the « 196 Trapeziums Series ») de Vera Molnar // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol3 no2… Lire la suite…
Inspiré par « Research and Teaching in Art and Science » by Vladimir Bonačić // Computer Graphics and Art Vol. 2, No. 3 pp. 4-8 // This sketch is part of the ReCode Project – http://recodeproject.com //////////////////////////////////////////////////////////////////////// // // // « Orbits… Lire la suite…
De Computer Graphics and Art vol3 n°2 page 20, par Reiner Schneeberger and students // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol3 no2 pg 22 // by Reiner Schneeberger //… Lire la suite…
De Computer Graphics and Art vol1 no4 page 29 // par Reiner Schneeberger and students // This sketch is part of the ReCode Project – http://recodeproject.com // From Computer Graphics and Art vol1 no4 pg 29 // by Reiner Schneeberger… Lire la suite…
function setup() { createCanvas( 400, 400); background( 255 ); stroke( 0 ); strokeWeight( 2 ); noFill(); smooth(); drawRects(); } function draw() { } function drawRects() { background(255); for( var i = 0; i < 400; i++ ) {… Lire la suite…
function setup() { createCanvas( 780, 780); fill( 0 ); noStroke(); pg = createGraphics(780, 780); drawSquares(); } function draw() { } function drawSquares() { background(240 ); pg.background( 240 ); for( var r = 2; r < 22; r++… Lire la suite…
var radius = 150; function setup() { createCanvas( 600, 600 ); background( 255 ); stroke( 0 ); noFill(); strokeWeight( 2 ); drawCircles(); } function draw() {} function drawCircles() { background( 255 ); for(var r = 0; r <… Lire la suite…
Basé sur la « Diamond Theory » de Steven H Cullinane /* Part of the ReCode Project (http://recodeproject.com) Based on « Diamond Theory » by Steven H Cullinane Originally published in « Computer Graphics and Art » v2n1, 1977 Copyright (c) 2013 Radames Ajna… Lire la suite…
Inspiré par « Structure Square Series Inwards » de Roger Coqart /* Part of the ReCode Project (http://recodeproject.com) Based on « Structure Square Series Inwards » by Roger Coqart Originally published in « Computer Graphics and Art » v1n3, 1976 Copyright (c) 2013 Fabien… Lire la suite…
Hommage to Zdeňek Sýkora /* * Untitled, Hommage to Zdeňek Sýkora (1920 – 2011) * * Kof / Kryštof Pešek 2012 * */ var theta = []; var moznosti = [0,90,180,270]; var rot = [1,2,4]; var r; function… Lire la suite…
Inspiré par « From the Square Series » de Roger Coqart /* Part of the ReCode Project (http://recodeproject.com) Based on « From the Square Series » by Roger Coqart Originally published in « Computer Graphics and Art » v3n2, 1978 Copyright (c) 2015 Haydn Edgvaron-King… Lire la suite…
Inspiré par « From the Square Series » de Roger Coqart /* Part of the ReCode Project (http://recodeproject.com) Based on « From the Square Series » by Roger Coqart Originally published in « Computer Graphics and Art » v3n2, 1978 Copyright (c) 2015 Haydn Edginton-King… Lire la suite…