[Fiware-comms] Fwd: IMAGE SELECTED!!!

Angeles Tejado angeles.tejado at ogilvy.com
Thu May 29 22:40:23 CEST 2014


Hola a todos. Después de mucho ir y venir con el artista, aquí está la
imagen final que imprimiríamos en la camiseta con todo el mensaje que os
comentamos en la presentación inicial.

Adjunto también la descripción del trabajo tal y como aparecería en la
parte delantera:

1.- #CodeIsArt #ArtOfCoding...
2.- Artista, título y descripción de la obra

En la parte trasera: fragmento de código.

Hemos pensado que iría mejor en un DIN A4 como un cuadro... En DIN A3 queda
demasiado grande. También estoy pensando en imprimir 1000 blancas, 1000
grises y 1000 negras pero no sé si tirar por el negro directamente.

Otra cosa importante. A nivel ppto para nosotros estaría bien tirar
directamente 6000 o 5000 para usarlas en CPEU pero decidme como lo veis. Si
no lo veis, haríamos otra creatividad específica para la CPEU. De todas
formas, con los timings que tengo para Mexico, no sé si vamos a tener
tiempo para imprimir 5000.

Gracias por vuestros comentarios :-)


-- 
Saludos/Regards,

Angeles Tejado
Account Supervisor
OgilvyOne Worldwide Madrid
Office: +34-91-4512179
Cell: +34-608508873
E-mail: angeles.tejado at ogilvy.com

-- 


 

Privileged/Confidential Information may be contained in this message. If
you are not the addressee indicated in this message, you should destroy
this message. For more information on WPP's business ethical standards
and corporate responsibility policies, please refer to WPP's website.

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.fiware.org/private/fiware-comms/attachments/20140529/e3c5503b/attachment.html>
-------------- next part --------------

The text-only deliverables to accompany the visuals generated for the CodeIsArt project.

Best regards,

Amnon Owed
The Hague, The Netherlands
29.05.2014

========================================================================================

Project title:
#CodeIsArt

Artist name:
Amnon Owed

Work title:
Returning To First Days / #15410 (2014)

Work description:
Geometric composition generated with an algorithm based on repetition & randomness.
Made with the Processing creative coding framework.

========================================================================================

Code Fragment:
 * NOTE 1: Part of the actual source code used to generate the image.
 * NOTE 2: Authentic indentation used.

======================[ BEGIN CODE FRAGMENT ]======================

void draw() {
  int rS = int(random(100000));
  frame.setTitle("randomSeed: " + rS);
  randomSeed(rS);
  background(colors[0]);

  for (int i=0; i<sizes.length; i++) {
    int[] settingsPerSize = sizes[i];
    for (int j=0; j<settingsPerSize[0]; j++) {
      float x = random(width);
      float y = random(height);
      float shapeSize = random(settingsPerSize[1], settingsPerSize[2]);
      drawRotatedRect(x, y, shapeSize);
    }
  }
}

void drawRotatedRect(float x, float y, float shapeSize) {
  if (abs(x-width/2) < y - margin) {
    noStroke();
    fill(colors[int(random(colors.length))]);
    beginShape();
    vertex(x, y-shapeSize);
    vertex(x+shapeSize, y);
    vertex(x, y+shapeSize);
    vertex(x-shapeSize, y);
    endShape();
  }
}

======================[ END CODE FRAGMENT ]======================
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 15410 (PREVIEW TIF).tif
Type: image/tiff
Size: 3009234 bytes
Desc: not available
URL: <https://lists.fiware.org/private/fiware-comms/attachments/20140529/e3c5503b/attachment.tif>


More information about the Fiware-comms mailing list

You can get more information about our cookies and privacy policies clicking on the following links: Privacy policy   Cookies policy