ALGORITHMES - Gaëtan Robillard
Intervenants : Naïm Aït Sidhoum, Thierry Mouillé, Francis Plisson, Gaëtan Robillard, Philippe Roy, David Zerbib
sdu 5 au 9 novembre 2018
Images génériques (./i) est un projet de création logicielle qui repose sur la mise en place d’un atelier ouvert à la transmission artistique dans un contexte de pratique algorithmique. Le logiciel de dessin procédural qui est présenté ici sert de terrain d’expérimentation pour créer une machine graphique et générative qui produit du sens à partir d’un processus participatif. A travers une expérience d’apprentissage telle que celle proposée, comment individus, algorithmes et langage artistique interagissent-ils ? Comment structurer un espace cognitif pour introduire ces rapports ? Peut on instruire une pratique artistique à un logiciel ou à un algorithme ? Une image générative est elle une image qui a appris l’art ?
Site internet : reflexions, images, installer, documentation, etc...
Cf iconographie et magazine Bit International
Communication Arduino Makeblock
SVG extension pour affichage dans l'explorer windows
Pen Plotter Programming: The Basics
// Variables
int x ;
int y ;
void setup(){
size(600,600);
strokeWeight(2);
frameRate(2);
noFill();
//noLoop();
}
void draw(){
background(255);
beginShape();
for (int i=0; i<20; i++){
x = int(random(0,width));
y = int(random(0,height));
vertex(x,y);
}
endShape();
saveFrame("polygon_##.jpg");
}
Dynamograma 9 - workshop Le Laboratoire des Intuitions Thierry Mouillé, Francis Plisson, Gaëtan Robillard, Naïm Aït-Sidhoum ESAD TALM-Tours