import processing.opengl.*; /** * Simple plan to volume, using "particules". * * Converts a flat image into spatial data points and rotates the points * around the center. Click to stop/start rotation. Hit Space bar to start/stop transformation. * Hit 1 2 or 3 to change the type of volume: 1 for sphere, 2 for cylinder, 3 for tore. */ /* @pjs preload="img.jpg"; */ PImage extrude; int[][] values; float[][][]X; float[][][]Y; float[][][]Z; int X0; int Y0; float angle = 0; float rayon=100; float rayon2=200; float theta; float phi; int pas=3; float YRotation=0; float XRotation=0; float speed=0.01; boolean rotation=true; float count=1; boolean unwrap=true; float amortissement=0.1; float deceleration=0.001; int volumeTypeFrom=3; int volumeTypeTo=1; void setup() { size(480, 600, OPENGL); strokeWeight(2); // Load the image into a new array extrude = loadImage("img.jpg"); extrude.loadPixels(); //size(extrude.width, extrude.height, P3D); X=new float[5][extrude.width][extrude.height]; Y=new float[5][extrude.width][extrude.height]; Z=new float[5][extrude.width][extrude.height]; values = new int[extrude.width][extrude.height]; volume(); } void draw() { background(0); if (rotation) { YRotation=((float)mouseX-width/2)/100; XRotation=-((float)mouseY-height/2)/100; } translate(width/2, height/2, 0); rotateY(YRotation); rotateX(XRotation); translate(-width/2, -height/2, 0); if (unwrap) { count+=speed; if (count>1) { speed=-speed; volumeTypeTo=floor(random(5)); } if (count<0) { speed=-speed; volumeTypeFrom=floor(random(5)); } } // Display the image mass for (int y = 0; y < extrude.height; y+=pas) { for (int x = 0; x < extrude.width; x+=pas) { stroke(values[x][y]); point(X[volumeTypeTo][x][y]-(X[volumeTypeTo][x][y]-X[volumeTypeFrom][x][y])*count, Y[volumeTypeTo][x][y]-(Y[volumeTypeTo][x][y]-Y[volumeTypeFrom][x][y])*count, Z[volumeTypeTo][x][y]-(Z[volumeTypeTo][x][y]-Z[volumeTypeFrom][x][y])*count); } } } void volume() { for (int i = 0; i < 5; i++) { for (int y = 0; y =97)&&(keyCode<106)) { pas=keyCode-95; strokeWeight(1+pas/2); volume(); } }