What you see on this image is the result of two minutes of moving in front of the webcam (the webcam track the red point and it makes move the image), and this is what I want to print.
Did I have to export the image as a PDF and then tell Processing to print it ?
I didn't find information about printing directly from Processing, have you got any information about that ?
I'm new in Processing and i got a problem i can't find the answer :
ArrayIndexOutOfBundsException : 0
The idea of my project is to randomly display points of construction of a font each time you click, anyway i'll put you an image of what i'd like in result and my code :
As i said i'm really new so maybe there is error of construction, please tell me !
THANKS !
import geomerative.*;
cercle [] touslescercle;
RFont font;
String textTyped = "TEST";
boolean doSave = false;
float a;
float b;
void setup() {
size(1324,350);
frame.setResizable(true);
smooth();
RG.init(this);
font = new RFont("FreeSans.ttf", 200, RFont.LEFT);
I'm new in Processing and I need your help for a project :
I'd like to create shape (or animate differents shapes) with beat detection, for exemple each time a bass sound draw a rect, each time a snare sound draw a triangle, etc ...
So I need your help to choose the best library and how to proceed to start my project (I've made few things with sound with Ess)
Another question, is it posible to juste choose to analyze bass sound (I think this is about frequancy), to control a circle ?