Tachismo Virtual

polígonos

André Petry
imagens possíveis
Published in
2 min readNov 24, 2013

--

Heptadecágonos irregulares são formados por pontos posicionados de forma aleatória no campo visual, unidos por retas e preenchidos em preto.

Rotina em action script que define os polígonos:

var px = int(Math.random()*400);
var py = int(Math.random()*400);
lineStyle( 0, “0x000000", 100);
beginFill(“0x000000", 100);
moveTo(px,py);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
lineTo(int(Math.random()*400), int(Math.random()*400);
moveTo(px,py);
endFill;

A série Tachismo Virtual pode ser vista no site da Galeria Gestual: http://www.gestual.com.br/arq/expo_petry.htm

--

--