This plugin if for processingjs. It provides:
These will allow you to:
<pre data-executable="true" data-code-language="processingjs"> ... </pre>Here are a few examples:
float framerate = 24; // our "sketch" will have a framerate of 24 frames per second. int ball_x; // ball administration: x coordinate int ball_y; // ball administration: y coordinate int ball_radius = 20; // ball administration: ball radius void setup() { size(200,200); // set draw area size frameRate(framerate); // set animation framerate ball_x = width/2; // set the initial ball coordinates ball_y = ball_radius; // set the initial ball coordinates stroke(#003300); // set the default shape outline colour fill(#0000FF); // set the default shape fill colour } void draw() { // compute the ball height for this frame float bounce_height = height/2 * abs(sin(PI*frameCount/framerate)); // because the top of the screen is 0, and the bottom is "height", float ball_height = height - (bounce_height+ball_radius); // clear the drawing area background(#FFFFEE); // set the new ball y position ball_y = (int) (ball_height); // draw the ball ellipse(ball_x,ball_y,ball_radius,ball_radius); }
/* PROCESSINGJS.COM - BASIC EXAMPLE Delayed Mouse Tracking MIT License - Hyper-Metrix.com/F1LT3R Native Processing compatible */ // Global variables float radius = 50.0; int X, Y; int nX, nY; int delay = 16; // Setup the Processing Canvas void setup(){ size( 200, 200 ); strokeWeight( 10 ); frameRate( 15 ); X = width / 2; Y = width / 2; nX = X; nY = Y; } // Main draw loop void draw(){ radius = radius + sin( frameCount / 4 ); // Track circle to new destination X+=(nX-X)/delay; Y+=(nY-Y)/delay; // Fill canvas grey background( 100 ); // Set fill-color to blue fill( 0, 121, 184 ); // Set stroke-color white stroke(255); // Draw circle ellipse( X, Y, radius, radius ); } // Set circle's next destination void mouseMoved(){ nX = mouseX; nY = mouseY; }
size( 300, 300 ); ellipseMode(CENTER); rectMode(CENTER); // Draw Zoog's body stroke(0); fill(150); rect(100,100,20,100); //Zoog's body. // Draw Zoog’s head fill(255); ellipse(100,70,60,60); //Zoog's head. // Draw Zoog’s eyes fill(0); ellipse(81,70,16,32); //Zoog's eyes. ellipse(119,70,16,32); // Draw Zoog’s legs stroke(0); line(90,150,80,160); //Zoog's legs. line(110,150,120,160);Here's another one that's really cool on by Jared BlueThen from OpenProcessing:
/* Made by Jared "BlueThen" C. Created on November 4, 2009. Refined and commented on November 5, 2009. www.bluethen.com */ /* Variable a is used for determining the shape's y position, coupled with the distance they are from the center. */ float a; /* Setup(), the first function called when the applet is started */ void setup() { /* The applet is set to 500 pixels by 500 pixels */ size(350,350); /* RGB mode set to maximum of 6, since we'll be using 6 colors. 0 for black, 6 for white, and everything in between. */ colorMode(RGB, 6); /* The stroke color is used to determine the border color of each quadrilateral. */ stroke(0); /* Frame rate is set to 30. */ frameRate(30); } void draw() { /* a is decreased by 0.08. It represents the amount of radians the height of our boxes changes, and their speed. If we did nothing to a, then none of our shapes will move, so a is a key component in our formulas. */ a -= 0.08; /* Screen is cleared and background is set to 6 (white). */ background(6); /* These are our loops. We loop through 14 rows (-7 through 7) for the x axis, and within each row, we loop through 14 collumns for the z axis (x,z) is the ground, while y is verticle) */ for (int x = -7; x < 7; x++) { for (int z = -7; z < 7; z++) { /* The y variable is set to determine the height of the box. We use formula radius * cos(angle) to determine this. Since cosine, when graphed, creates a wave, we can use this to have the boxes transition from small to big smoothly. The radius pretty much stands for our range. cosine alone will return values between -1 and 1, so we multiply this by 24 to increase this value. The formula will return something in between -24 and 24. The angle is in radians. An entire loop (circle) is 2pi radians, or roughly 6.283185. Distance is used to create the circular effect. It makes the boxes of the same radius around the center similar. The distance ranges from 0 to 7, so 0.55 * distance will be between 0 and 3.85. This will make the highest and lowest box a little more than half a loop's difference. a is added on, (subtracted if you want to be technical, since a is negative), to provide some sort of change for each frame. If we don't include '+ a' in the algorithm, the boxes would be still. */ int y = int(24 * cos(0.55 * distance(x,z,0,0) + a)); /* These are 2 coordinate variations for each quadrilateral. Since they can be found in 4 different quadrants (+ and - for x, and + and - for z), we'll only need 2 coordinates for each quadrilateral (but we'll need to pair them up differently for this to work fully). Multiplying the x and z variables by 17 will space them 17 pixels apart. The 8.5 will determine half the width of the box () 8.5 is used because it is half of 17. Since 8.5 is added one way, and 8.5 is subtracted the other way, the total width of each box is 17. This will eliminate any sort of spacing in between each box. If you enable noStroke(), then the whole thing will appear as one 3d shape. Try it. */ float xm = x*17 -8.5; float xt = x*17 +8.5; float zm = z*17 -8.5; float zt = z*17 +8.5; /* We use an integer to define the width and height of the window. This is used to save resources on further calculating */ int halfw = (int)width/2; int halfh = (int)height/2; /* Here is where all the isometric calculating is done. We take our 4 coordinates for each quadrilateral, and find their (x,y) coordinates using an isometric formula. You'll probably find a similar formula used in some of my other isometric animations. However, I normally use these in a function. To avoid using repetitive calculation (for each coordinate of each quadrilateral, which would be 3 quads * 4 coords * 3 dimensions = 36 calculations). Formerly, the isometric formula was ((x - z) * cos(radians(30)) + width/2, (x + z) * sin(radians(30)) - y + height/2). however, the cosine and sine are constant, so they could be precalculated. Cosine of 30 degrees returns roughly 0.866, which can round to 1, Leaving it out would have little artifacts (unless placed side-by-side to accurate versions, where everything would appear wider in this version) Sine of 30 returns 0.5. We left out subtracting the y value, since this changes for each quadrilateral coordinate. (-40 for the base, and our y variable) These are later subtracted in the actual quad(). */ int isox1 = int(xm - zm + halfw); int isoy1 = int((xm + zm) * 0.5 + halfh); int isox2 = int(xm - zt + halfw); int isoy2 = int((xm + zt) * 0.5 + halfh); int isox3 = int(xt - zt + halfw); int isoy3 = int((xt + zt) * 0.5 + halfh); int isox4 = int(xt - zm + halfw); int isoy4 = int((xt + zm) * 0.5 + halfh); /* The side quads. 2 and 4 is used for the coloring of each of these quads */ fill (2); quad(isox2, isoy2-y, isox3, isoy3-y, isox3, isoy3+40, isox2, isoy2+40); fill (4); quad(isox3, isoy3-y, isox4, isoy4-y, isox4, isoy4+40, isox3, isoy3+40); /* The top quadrilateral. y, which ranges between -24 and 24, multiplied by 0.05 ranges between -1.2 and 1.2 We add 4 to get the values up to between 2.8 and 5.2. This is a very fair shade of grays, since it doesn't become one extreme or the other. */ fill(4 + y * 0.05); quad(isox1, isoy1-y, isox2, isoy2-y, isox3, isoy3-y, isox4, isoy4-y); } } } /* The distance formula */ float distance(float x,float y,float cx,float cy) { return sqrt(sq(cx - x) + sq(cy - y)); }