Diferencia entre revisiones de «María Jesús Arestizábal»

De Casiopea
Sin resumen de edición
Sin resumen de edición
Línea 1: Línea 1:
{{Persona
{{Proyecto
|Nombre=María Jesús
|Título=Tarea 9
|Apellido=Arestizábal
|Tipo de Proyecto=Proyecto de Curso
|Sexo=Femenino
|Año de Inicio=2012
|Año de Ingreso a la Escuela=2012
|Fecha de Nacimiento=1993/09/21
|Relación con la Escuela=Alumno
|Carreras Relacionadas=Diseño Gráfico, Diseño Industrial
|Carreras Relacionadas=Diseño Gráfico, Diseño Industrial
|Cursos Relacionados=Imagen Escrita 2012,
|Profesor=Herbert Spencer,
|Alumnos=María Jesús Arestizábal,
}}
}}
{{mis Talleres}}
import processing.pdf.*;


{{Mis Proyectos}}
PImage paisaje; PFont font; String[] code;
 
float I = 8; float AR = 8; float D = 8; float AB = 8; float escala;
 
void setup() {
 
paisaje = loadImage("paisaje.jpg"); 
size(609, 765, PDF, "paisaje.pdf");
 
float ancho = width - (I - AB);
escala = ancho/(float)paisaje.width;
noStroke();
noLoop();
background(255);
font = createFont("Courier", 9);
textFont(font, 8);
code = loadStrings("trazo.pde");
}
 
 
void draw() {
 
float spacer = 10;
 
for (int y = 0; y <paisaje.width; y += spacer) {
  for (int x = 0; x < paisaje.height; x += spacer) {
    float plotX = map(x, 0, paisaje.width, D, width +I);
    float plotY = map(y, 0, paisaje.height, AR, D + (paisaje.height * escala));
    color c = paisaje.get(x, y);
    trazo(plotX, plotY, c, spacer);
  }
}
printCode();
println("PDF listo");
exit();
}
 
void printCode() {
 
float interlinea = 0;
 
interlinea += 15;
}
 
void trazo(float x, float y, color c, float amp) {
 
fill(c);
 
  triangle( x-6, y, x, y-14, x+10, y);
  ellipse(x, y, 8, 24);
 
}

Revisión del 11:43 5 jul 2012


TítuloTarea 9
Tipo de ProyectoProyecto de Curso
Período2012-
Del CursoImagen Escrita 2012,
CarrerasDiseño Gráfico"Diseño Gráfico" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property., Diseño Industrial"Diseño Industrial" is not in the list (Arquitectura, Diseño, Magíster, Otra) of allowed values for the "Carreras Relacionadas" property.
Alumno(s)María Jesús Arestizábal
ProfesorHerbert Spencer

import processing.pdf.*;

PImage paisaje; PFont font; String[] code;

float I = 8; float AR = 8; float D = 8; float AB = 8; float escala;

void setup() {

paisaje = loadImage("paisaje.jpg");  
size(609, 765, PDF, "paisaje.pdf"); 
float ancho = width - (I - AB);
escala = ancho/(float)paisaje.width;
noStroke();
noLoop(); 
background(255);
font = createFont("Courier", 9);
textFont(font, 8);
code = loadStrings("trazo.pde");

}


void draw() {

float spacer = 10;
for (int y = 0; y <paisaje.width; y += spacer) {
  for (int x = 0; x < paisaje.height; x += spacer) {
    float plotX = map(x, 0, paisaje.width, D, width +I);
    float plotY = map(y, 0, paisaje.height, AR, D + (paisaje.height * escala));
    color c = paisaje.get(x, y);
    trazo(plotX, plotY, c, spacer);
  }
}
printCode();
println("PDF listo");
exit();

}

void printCode() {

float interlinea = 0;
interlinea += 15;

}

void trazo(float x, float y, color c, float amp) {

fill(c);
  
 triangle( x-6, y, x, y-14, x+10, y);
 ellipse(x, y, 8, 24);
 

}