Processing is an open source programming language and environment for people who want to create images, animations, and interactions.

learn more… | top users | synonyms

0
votes
1answer
22 views

Digit Places in Processing

I am making a calculator with the processing programing language. The part I am stuck on though is making it so that you can have numbers in the tens, hundreds, thousandths place and so on. Right now ...
0
votes
1answer
21 views

(Processing) PGraphics doesn't update when all pixels copied from another PGraphics

I have a small problem with PGraphics. I have folowing piece of code extracted from larger project I am working on: int x=0; int y=0; PGraphics array1; PGraphics array2; void setup() { ...
0
votes
1answer
18 views

PShape 2.08 throws NullPointerException with createShape

I am using Processing 2.08 on mac. I am trying to create a PShape using the createShape function as given in the documentation. PShape s; void setup(){ size(500,500); s = createShape(); ...
0
votes
0answers
14 views

Looking for idiom database to download

I'm working on a creative writing mobile app and I'm looking for a database of idioms. I can't seem to find a "downloadable" database of idioms for free or purchase. Has anybody come across any? I did ...
0
votes
2answers
26 views

Processing 2.0b8 / Disposing PGraphics objects and memory management

I'm working on a sketch that uses some PGraphics object as buffers that I draw on the screen with the image() method. My problem is that I've noticed a huge memory leak, 99% due to this buffers not ...
0
votes
1answer
15 views

Processing - Accessing classes in subdirectory

I'm hitting this issue in this latest project where I'm looking to organise my code into subdirectories. However by doing so, the main application .pde file can't "see" the classes in the ...
0
votes
2answers
47 views

fadeout text at a lower speed

I want to make a group of array fade out until the last array object in this group was appended. And I use millis() to make every three object fadeout at a slower speed! So I create a function called ...
0
votes
0answers
38 views

Render clipping of near polygon objects in Processing

I'm modelling 3D objects in Processing and have an issue whereby when objects get too close to the camera their renders are clipped (i.e. the closest bits of the object to the camera are not ...
0
votes
0answers
24 views

Kinect for Windows with Processing and SimpleOpenNI on Apple OSX stops working after 20 sec

I am using Kinect for Windows (not for XBOX) on Apple iMac 3GHz 4GB 10.8.3. The Kinect is connected with USB cable to iMac and with power supply. Software: I have installed XCode, XQuartz, MaxPorts, ...
-1
votes
0answers
20 views

How does a CPIOM work in an avionics computer system [closed]

I have tried to do some research on the CPIOMs (Core Processing I/O Module) that are currently used in the avionics industry (e.g. Airbus or Boeing). What I was looking for is a quick but informative ...
0
votes
1answer
41 views

Array of text don't fade out until the last one is appended

I want to make a group of array fade out until the last array in this group was appended. for example, I use append to create zoog[0], zoog[1], zoog[2], and I want these three objects not fadeout ...
4
votes
1answer
97 views
+50

Arduino multi-dimensional array crash

I have a block of code that does something to this effect: int pieceX = 0; int pieceY = 0; int board[8][47] = ...
0
votes
2answers
20 views

Unreachable code Processing arduino communication

i am trying to do communication between arduino/wiring to processing and make 2 objects move with 2 joysticks. this is the method i use for the comunication public PVector serialEvent(Serial ...
1
vote
1answer
39 views

Achieving Google Earth-like 3D movement controls in Processing

I'm designing a Processing model that needs to achieve similar user controls for camera movement to Google Earth, but am having issues with the perspective. The example code at the bottom provides ...
0
votes
1answer
50 views

Read python in processing

Does anyone know how to read a python file in processing without using processing.py or other third party library or platform? I have a python file that can generate a text and want my processing read ...
0
votes
2answers
49 views

Algorithm Help - hit test for small objects

When implementing a selection algorithm in a processing sketch I cycle through each object in the scene and check to see if it is within a few pixel range of where the mouse clicked. There are lots of ...
0
votes
1answer
36 views

Continuous keypressed functionality for non-arrow keys in Processing

Please test the following code by pressing (holding down) first the arrow keys and then non-arrow keys. In Mac at least you'll see the arrow keys apply their functions continuously, whereas the ...
0
votes
1answer
47 views

Calculate perceived equal steps in color brightness

I've been trying to figure this out for a while, and it's driving me mad. As most people know, if you draw 10 rectangles next to each other, ranging from white to black in equal steps of HSV ...
0
votes
1answer
21 views

Getting a constructor error in processing

I'm playing with processing from some days, but I encountered an error that i didn't understand. I declared the class and the constructor with the proper arguments, maybe you can help me. This is the ...
1
vote
1answer
32 views

Continuous rotation in Processing

I wrote a program in Procesisng that renders opaque cubes with random colour and rotation on top of each other, but I'm looking to individually continuously spin each cube while the program is ...
0
votes
0answers
25 views

Video buffer delay with MJPG Feed

I am trying to delay my live mjpeg video feed by 10 seconds. I am trying to modify this code and but I am unable to incorporate the mjpg url. It keeps on saying 'The constructor ...
2
votes
1answer
45 views

Processing: Would it be possible to use Processing language and render graphics in another GUI toolkits such as wxWidgets or Qt?

I'd like to use Processing as graphics engine but make it work inside a wxWidgets or Qt GUI application. Is this possible and are there any references?
0
votes
2answers
21 views

Adding A Timer with Score

Im Currently developing a game with Processing and Fiducials. Basically this game consists of asking questions related to certain countries. Each ANS of each question is a Country. Example where is ...
0
votes
1answer
36 views

How to use mousePressed in ProcessingJS?

I'm trying to access the mousePressed property in a ProcessingJS snippet but am getting undefined. Here's what I've tried so far: <script ...
2
votes
0answers
30 views

How to correctly/cleanly draw SVG graphics using ProcessingJS?

I'm getting started with ProcessingJS and I'm currently playing with SVG a bit. Unfortunately I've ran into a strange behaviour displaying SVG. Here is the output: and here is the code that ...
0
votes
1answer
45 views

Delaying MJPEG stream by 10 seconds

I am trying to make the live video feed delay by 10 seconds. I've tried using delay(); but that just stops and starts the code and I need it to be more of a time shift. I've heard its possible to make ...
0
votes
1answer
24 views

Accessing Hardware Information with Processing

I know this topic has been discussed for JAVA, but I can't manage to crack it. I really am starting to throw my toys out the cot here. I am using Processing 2.07b and I want to access my CPU usage or ...
0
votes
0answers
15 views

log and mean operation in data preprocessing

I have a time series data, e.g. X_t = [x_{t_1}, x_{t_2}, ... x_{t_n}] (t = 1, ..., m), each X_t is an observation series within a fixed time interval, I want to transform each X_t into log scale ...
-1
votes
0answers
27 views

php - how to live processing/submit [closed]

I have a few questions about processing live. I have built statically tweet classification processing using uClassify services in herlambang.tk/skoringchartcloud/tes.php eg textfield filled ...
0
votes
1answer
22 views

Rotating a PVector

ok guys i want to rotate a PVector that i have in this method. this method replaces the posX and posY by the x and y of the PVector. the movement is determinated by a joystick that comes from arduino ...
1
vote
0answers
22 views

Processing mail protocol over java servlet implementation

The problem: I have a web application (java servlet basically) and I was looking for a way to process mail protocols (smtp, pop) over servlets api. I'm trying to emulate a very simple email server ...
1
vote
1answer
28 views

Make text appear and disappear in processing

So, I was wondering if there was a way to have text appear and then disappear as its being replaced by a different text. I currently found a code that will let me have text appear slowly one by one ...
1
vote
1answer
58 views

Processing RGB Wheel to control Arduino RGB LED

I would like to make a RGB wheel in processing as a GUI to control the LED color of a RGB Led connected to an Arduino Board. I have done this code in Processing so far. float startFill; float ...
0
votes
1answer
35 views

How to Change Background Color on Processing?

I'm still extremely new to processing and I'm just playing around with it right now. I was hoping to find out how to change the background color between two colors, particularly between white and ...
0
votes
1answer
29 views

ProcessingJS as a js graphics library

I encountered a problem when I was reading the page http://processingjs.org/articles/PomaxGuide.html Please note the section "Processing.js as javascript graphics library": the setup method is ...
0
votes
1answer
28 views

How to calculate text location x with processing.org?

I am having a hard time understanding how to calculate the size of a word in processing when there are different font sizes. All I am trying to do is to put suffix right after the word "Metric". ...
0
votes
1answer
38 views

Processing.js - Is there a destructor?

This might be a naive question, but is there a destructor in Processing.js? I know that regular Processing is Java-based so there isn't a destructor, but I'm not sure if Processing.js runs the same ...
0
votes
1answer
22 views

Append does not work with mousepressed?

I am having an issue with my project, and cannot figure it out. Processing is telling me what I have is not an array, but I do not see how it is not. Also, this issue only occurs when I click the ...
0
votes
1answer
32 views

How to add audio only when mousepressed in processing?

I was wondering if there was a processing code that will let me use sound only when i press the mouse and stops when I release it. I already have the audio that I want to use loaded onto processing ...
0
votes
2answers
66 views

Ultrasonic sound using matlab

I am working for my class project on making a cat repellent . The application is supposed to detect cat (OpenCV implementation) and scream at the cat . However, I want my software to scream an ...
0
votes
1answer
36 views

Moving image with the cursor

So, I'm working on a processing project that lets me use an image as a cursor but I've been having problems with the cursor image because it has been constantly blinking. I read that if the cursor ...
0
votes
2answers
69 views

First view perspective: rotation is driving me crazy

I would like to implement a simple example in OpenGL just to test the first perspective view (without using lookAt facility), but it is driving me crazy! I made a little prototype using Processing ...
0
votes
2answers
17 views

How could I choose one particular file to load with loadStrings

The title is explicit enough, I want to let the user choose the text file he want to open. I do not know if there is an explorer or an input field already implemented on processing. Any help would be ...
0
votes
1answer
38 views

Running multi-class Processing project in Eclipse

I've been working on a Processing project recently, and wished to bring it into Eclipse (for use with another class written in Java). Basically what this project is is a race simulation, and I have a ...
0
votes
2answers
52 views

Processing/Java - Simple example

I'm trying to get a simple example to run. The below code compiles but gives me errors when I try to run it. I'm a newbie to Processing/Java. Also, my goal is to see if I can make a simple command ...
-5
votes
2answers
60 views

size() command not working when containing method is run within a static method [closed]

I don't know what is going on, here is my code: import java.io.*; File file; static void main(String[] Args){ try{ new MeshViewer().init(Args[0]); }catch (ArrayIndexOutOfBoundsException e){ ...
0
votes
0answers
34 views

Add items to hashmap in for loop

I'm trying to put items from a csv file in an hashmap. By adding items I mean categorizing them. The csv is filled with the answers from a question list. So the csv is build up like this: Person ...
-2
votes
2answers
37 views

How to write a conf file for Java? [closed]

I am writing a code in Processing 2.0 and have embedded it in Java environment using Eclipse. The code has many parameters which I frequently need to access in all classes. Below is the example of ...
0
votes
1answer
31 views

Processing exported executable references

I want to export from processing an executable.This happens normaly but it makes also 2 folders one source and one lib that stors the .pde and the .jar files that the executable needs. I want to make ...
0
votes
1answer
27 views

Are toxiclibs libraries compatible with processing.js?

I have a Processing sketch that will be running in a gallery setting soon. I'm considering porting the sketch to processing.js, but I am unsure if you can use the toxiclibs libraries in ...

1 2 3 4 5 21