Diferencia entre revisiones de «Macarena Caro, mouse»

De Casiopea
Sin resumen de edición
m (Texto reemplazado: «Helbert Spencer» por «Herbert Spencer»)
 
Línea 7: Línea 7:
|Asignaturas Relacionadas=Taller Inicial 1ª y 2ª Etapa,
|Asignaturas Relacionadas=Taller Inicial 1ª y 2ª Etapa,
|Cursos Relacionados=Imagen Escrita 2012,
|Cursos Relacionados=Imagen Escrita 2012,
|Profesor=Helbert Spencer,
|Profesor=Herbert Spencer,
|Alumnos=Macarena Valentina Caro Cortes,
|Alumnos=Macarena Valentina Caro Cortes,
|Imagen=M.caroTarea 3.png
|Imagen=M.caroTarea 3.png

Revisión actual - 10:24 27 sep 2018

Macarena Caro, mouse


TítuloMacarena Caro, mouse
Tipo de ProyectoProyecto de Curso
Palabras Clavetarea 3
Período2012-
AsignaturaTaller Inicial 1ª y 2ª Etapa,
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)Macarena Valentina Caro Cortes
ProfesorHerbert Spencer

float y, n; float m; void setup() {size(700, 700); } void cruz(float x, float y, float tam) {float t = tam+90; stroke(#F2461B); line(x-9, x*1000, y+70, x); stroke (#1BF2D4); line(y, x+60,y,x+100);} void draw() {background(255);for (int x = 80; x < height; x++) {n = norm(x, 80, height); m = map(mouseX, 60, width, 1, 25); y = pow(n, m) * height; cruz(y, x, y);cruz(x, x-y, y+x);} println(m); }