Tagged Questions

3
votes
1answer
119 views

Processing: Why is setup() running multiple times?

I'm working on a visualisation app with Processing. All appears to be going well, but I've noticed that in the console, I'm seeing any println() statements from the setup() method in triplicate. This ...
2
votes
2answers
109 views

Processing animation extremely choppy when getting data from a remote host

I am connecting to a remote web server to get mouse movements stored in a database. The processing program I've written to animate these movements has been INCREDIBLY choppy since putting the code on ...
2
votes
2answers
177 views

Why is my Processing app not behaving?

I am learning to use Processing, and have modified one of the examples to create this applet. I have two questions: Why are the spheres oblate? The spheres in the example I cribbed from were nice ...
1
vote
0answers
132 views

Realtime speed changes to video playback in Processing.org

I have been working with the GSVideo plugin for processing.org and its been really helpful with the speed() method that allows changing of playback speeds for linked video files. However, a ...
1
vote
2answers
209 views

How to get screen coordinates in Processing

I am using Processing to do a project. I have a sketch (actually text) in the sketch board by using the draw function. I want to get the screen coordinates of each word of the text to do some other ...
1
vote
1answer
84 views

Transform from relative to world space in Processing

What is a good way of transforming a local relative point, into the world (screen) space in Processing? For example, take the Flocking example that comes with the Processing PDE. How would I ...
1
vote
1answer
159 views

Creating BufferedImage from PApplet contents

In my Java servlet that uses Processing, I want it to render the contents of the PApplet to a BufferedImage and produce from it a PNG image. What's the way to create a BufferedImage from the contents ...
1
vote
1answer
856 views

webcam access using opencv with processing in an applet or application

I made a small sketch with processing using opencv to face detect and track. But when I export as an application and start it nothing happens, same as an applet. First I exported the applet and ...
0
votes
2answers
72 views

Processing P5 - Timer issue with millis()

I am making a little game in Processing which is similar to those Guitar Hero style games and I am trying to do 2 things: When the game loads, stop the time from moving During the game, allow for ...
0
votes
2answers
44 views

Understanding Array Access (Processing)

Hi could anybody help me understand this particular piece of code from this Langton's Ant sketch. antLoc = new int[]{rows/2,columns/2}; I don't exactly understand what is actually happening here, ...
0
votes
1answer
74 views

Having trouble with updatePixels() in a Java app using Processing libraries

I'm trying to write a simple game in Java that uses Processing to render graphics. However, I'm having trouble rendering any changes using updatePixels(). I can successfully set the background color ...
0
votes
1answer
121 views

Can mousePressed be defined within a class?

I am trying to create a class called InputManager to handle mouse events. This requires that mousePressed be contained within the InputManager class. like so class InputManager{ void ...
0
votes
0answers
49 views

Simon Game Image Hang

I am trying to develop Simon memory game ussing proccesing and AR Toolkit. I have the entire logic code done. The game seems to be running as needed as I can see the print statements in th console as ...
0
votes
1answer
183 views

Extending the TcpClient Class in the oscP5 Processing Library

I am trying to extend the TcpClient class in the oscP5 library for Processing. I have already imported netP5.* and oscP5.* in my main sketch. However, the following code produces this error: ...
0
votes
1answer
233 views

Processing oscP5 Library

I'm using the oscP5 library in Processing. I've already looked in the javadoc for oscP5 and I've browsed through the source but I can't figure it out. When I get debug info like this: ### new Client ...
0
votes
2answers
208 views

How can I auto-crop a pre-defined polygon shape from an image file?

Ideally using a Python library or processing.org, I need to import an image and then crop a predefined polygon area from this image using x,y coordinates (vertices). Thanks.
0
votes
1answer
131 views

How to tell when an @font-face rule is applied

Is there any way to tell when an @font-face rule is applied? I'm creating @font-face rules that use data: URIs from a font file requested with an synchronous XMLHttpRequest in JavaScript and then ...