Tagged Questions
9
votes
3answers
269 views
Calculate Voronoi around polygon
I need to generate a Voronoi diagram around a concave (non-convex) inside polygon. I have looked for methods online, but I haven't been able to figure out how to do this. Basically, I generate the ...
5
votes
1answer
171 views
How to use external libraries in the Eclipse (Java) and Processing for Arduino
I was able to get functionality out of the Arduino through Eclipse following the tutorial
Arduino in Eclipse via Processing.
However, I did run into a problem; I was unable to use libraries such as ...
5
votes
1answer
250 views
How to get performance increases using Processing for Android?
I have converted a few of my Processing sketches into Android apps, but they seem to run really slowly in the emulator and on my device.
Are there any tips on how to increase the speed and ...
2
votes
1answer
168 views
Kinect 3D character mesh animation
I am writing with Java and Processing, trying to animate a character with data received from Kinect. I have been successful in creating a stick man that repeats my motion. However, I find that doing a ...
2
votes
1answer
131 views
Processing AnimationThread as a background task in Swing
I am writing an application using Processing PApplet ( http://processing.org/ ) inside a Swing gui and those two are not a happy marriage. I have a listener for JButton which starts a Swing Worker to ...
1
vote
2answers
55 views
Object Specifc Behaviour in an If Clause
I am working on a game that requires resolution actions depending on the object a ball collides with.
A lot of code within the resolution method applies to all of the different types of objects that ...
1
vote
1answer
52 views
Triangles with texture in processing
I have a code in processing which contains points moving randomly. Those points seek the ball and start triangulate (shaping triangles). I want to display on them a folder of sequences images with ...
1
vote
3answers
212 views
class constructor cannot be accessed by outside package
so i can't find a question already asked that answers my exact problem. I have a package that i wrote in eclipse that i exported as a jar library to use in the processing ide. in processing i have a ...
1
vote
2answers
37 views
How to simply print a page in Processing?
for my current project, I'm looking for a really simple workaround. I do a random graphic in Processing, and when the code has finished the graphic it should print on my printer. But preferable ...
1
vote
1answer
125 views
Image disappear on rotation in Processing
I'm using the Processing language to do a little game, but I'm having trouble with images and rotation. My sprite displays fine if I apply no rotation to it, but it disappears completely if it is ...
1
vote
2answers
75 views
Quantify a change of direction given an array of 3d points
I am working on a piece of software written in Java that uses some processing.core library classes and simpleopenni to track a user's hand with the XBOX Kinect.
What I am trying to figure out is how ...
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
2answers
373 views
Processing.org applet out of IntelliJ IDEA
I merged my code from Processing.org into IDEA some time ago as it was just more comfortable to develop. Now I need to export the code to an applet. I already set up the configuration for that task, ...
1
vote
2answers
177 views
How to manipulate an array similar to an ORDER BY clause in SQL?
My data has been placed into an array, but unfortunately not in the order I want it in...
String[][] databaseToArray = {
//{"Name", "Channel", "Description", "Amount", "isReady"},
{"John", ...
1
vote
2answers
1k views
Volume Control in Processing (java)?
I'm working on a Processing project. I tried to set the Volume of the audio played with the minim library. (setVolume seems not to be supported, and setGain has no effect)
So, I'm wondering whether ...
0
votes
1answer
82 views
Processing compile error caused by RxTx lib
I use processing to read from Arduino Serial. To do this i use the processing class Serial, but when i compile, i get this error:
WARNING: RXTX Version mismatch
Jar version = RXTX-2.2pre1
native lib ...
0
votes
1answer
48 views
Processing.Org: Modulo Issue
I am writing a 2D cellular automata that uses a 16x16 grid of objects. The objects are stored in a multi-dimensional array representing the grid. To calculate the values of the next generation, I need ...
0
votes
3answers
57 views
Processing/Java: adding/appending String array item to String + type detection
i'm working with a dataset in the form of several directories of *.csv (semi-comma separated, actually, for some reason) files, which i would like to process and add to a mysql db. yesterday, mr. data ...
0
votes
2answers
73 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
6answers
133 views
How do I create an array of strings without specifying its length in the beginning?
I want to create an array of strings, but I do not know the length of it in the beginning. It's like the array length depends on many factors and it's only decided when I fill strings/words into it. ...
0
votes
1answer
92 views
UDP Sockets Processing
I am writing the server side of an UDP Socket in Processing and encountering a Null Pointer Exception every time on the line DatagramPacket receivePacket = new DatagramPacket(receiveData, 4096);. The ...
0
votes
1answer
54 views
noise() doesn't give me a wide range of values
I was trying to generate a pseudo-random angle in processing today using noise but it is not working as I would have hoped.
float xoff = 0;
float inc = 0.01;
void draw(){
float vx = cos( ...
0
votes
1answer
159 views
Why is this simple Box2D thing not working?
When I run this, nothing happens. The block stays at (10.0,-10.0) and doesn't fall. Por que?
Here's my code:
import processing.core.PApplet;
import org.jbox2d.collision.shapes.PolygonShape;
import ...
0
votes
4answers
158 views
Date operations in Java?
I want to get the year/month/day values of a Date object, but the docs say the getYear(), etc. methods are deprecated. It suggests to use Calendar instead, but I was wondering if it's okay to use the ...
0
votes
1answer
339 views
The source attachment does not contain the source for the file PApplet.class
I'm making a sound toy for Android using Android Processing. I first wrote the code in the Processing editor, but am now bringing it in to Eclipse to take advantage of a sound library called libpd. I ...
0
votes
6answers
188 views
distance between two points in processing app?
I try to get the distance between two points in http://processing.org/ is like java but dont works:
d = sqrt ((x2 - x1)**2 + (y2 - y1)**2);
the distance formula is:
...
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
129 views
Help with Processing code run exception, incorrect classpath
I'm running processing on linux with the jvm bundle. When I type in tutorial code and run it I get the following error:
incorrect classpath: /usr/java/jdk2.6.0_06/lib
can you modify processing's ...
0
votes
2answers
146 views
How to calculate tangents of a circle in 3D?
I need help to calculate the tangets of a circle in 3D space, this is what I have so far
Tangents are represented by the blue lines, and this is the method I got from a friend to calculate them
...
0
votes
3answers
1k views
ClassCastException When Casting HashMap Iterator to a Concrete Type
I am very new to processing.org and Java. I am trying to store objects in a HashMap, and then iterate over the values of the HashMap, calling methods on the stored objects.
In order to do that, I ...
0
votes
3answers
1k views
How to add a Processing PApplet in SWT
I have a problem when trying to add a PApplet into SWT, it turns up an empty window when it should just render the PApplet. I.e. the PApplet works by itself, but not in a SWT window.
I thought that ...