Skip to content

dalhuijsen/ipoop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ipoop

processing.org stuff

HOWTO

place IRunnable in the folder next to your sketch, and add something like this:

--

PImage img;
void setup() { 
		  img = loadImage("img.jpg");
		  IRunnableEffect fx = new Slicer();
		  img = fx.run(img,random(30),random(80));
		  size(img.width,img.height);
		  noLoop();
}
void draw() { 
		  if ( img != null ) image(img,0,0);
}


interface IRunnableEffect { 	PImage run(PImage img,float x, float y); }

About

processing.org stuff

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors