Questions tagged [processing-ide]

Use this for questions specifically related to the Processing IDE rather than Processing (Java) or Processing (JavaScript) coding questions.

Use this for questions specifically related to the Processing IDE rather than Processing (Java) or Processing (JavaScript) coding questions.

41 questions
12
votes
2 answers

Setting heap size in IntelliJ IDEA correctly

I have this peculiar problem with running a Processing application in IntelliJ IDEA. I want to save a large image and to do this I run in to the following exception: Exception in thread "Animation Thread" java.lang.OutOfMemoryError: Java heap…
3
votes
1 answer

Building a translator for Processing for my Masters dissertation

this is the first time i post here and i would like to ask for help. My objective is to make the task of learning Processing more interactive and easier. To do that, I am developing an educational program simulation tool. My question is how could i…
3
votes
1 answer

Can I build a "JavaScript Mode" version of a Processing sketch using the command line?

I'm using the "b-g" Processing build system for Sublime Text 2 (link) which works perfectly fine. It's using the following command to initiate the build via the processing-java executable (I'm on Windows btw): "cmd": ["processing-java",…
2
votes
1 answer

Processing IDE doesn't read data right from serial

I am trying to make an arduino project with arduino ide and processing ide. I started doing a simple test to see the enviornment where I display the numbers 0,1..9 using arduino ide, but processing ide doesn't read it right for some reason and I…
Markus1997
  • 23
  • 2
2
votes
1 answer

Import Processing Serial library into java file

So I have .pde file and several .java files that are used in a project. I import the library as so into a .java file: import processing.serial.*; When I import the Processing serial library in the .pde file it works fine, but when I import the…
karamazovbros
  • 752
  • 1
  • 4
  • 27
2
votes
0 answers

IntelliJ Idea 2016.2 starting very slow

My IntelliJ Idea 2016.2 is starting very slow, it takes about 5 minutes to display "Choose your project". It used to load quickly, but suddenly in a day, it started to load slowly. It's not just IntelliJ Idea that is being affected, but also Android…
2
votes
1 answer

run pde file in eclipse

What is the language of .pde file? Is it C or java? I want to run these files of code. This file has an error because width and height variables are not initialized. I want to know whether I run this code in Processing Development Environment if I…
any
  • 185
  • 4
  • 17
2
votes
2 answers

How to use loadStrings in Processing/Java, when accessing remote server/other website?

I want to write a simple program in Processing, that would take data from here: https://btc-e.com/api/2/btc_usd/trades and display them in a chart. Let's consider the simplest example of accessing the data: void setup() { size(400,400); } void…
Paweł Tokarz
  • 316
  • 2
  • 15
1
vote
1 answer

y-orbit tumbles from top to bottom as mouseY changes in Processing IDE

NOTE: this is in the Processing IDE I am trying to get spherical orbiting down and i've almost got it. this is what i have so far: float cameraTheta, cameraPhi, cameraRadius; //camera position in spherical coordinates float camx, camy, camz; void…
Joe
  • 1,286
  • 7
  • 34
  • 51
1
vote
1 answer

Is there a way to disable the preview window in Processing IDE?

I am using Processing IDE to generate hundred short video clips for a computer vision project. Right now, I am using Python to create a .pde file and run it. This looks roughly like: PATH = "/my/local/director/" list_of_variables = [1, 2,…
WesH
  • 382
  • 2
  • 12
1
vote
1 answer

problem the display of processing IDE, the after it run, the texts are gone

IDK what just happen, but when the program is still running, the text the after it showed it gone, or it just showed one text. can u guys help me sorry for my bad English, I'll be appreciated your help thank you so much this is my code int j; float…
THe LaNd
  • 11
  • 2
1
vote
1 answer

How to import a Processing file into a Processing file?

I am making a Java Processing project in Processing IDE and would like to spread it across multiple PDE (Processing Source Code) files. I am unable to import Java Processing Source Code file as a Java class file using import. config.pde public int…
sjaustirni
  • 2,293
  • 5
  • 30
  • 41
1
vote
2 answers

How to get stack trace in Processing debugger

Is there any way to show a stack trace in the Processing 3 debugger (Java mode)? Not by catching an exception. I know about e.printStackTrace(). I want to print a stack trace in the debugger at a custom breakpoint. Thanks!
Serj.by
  • 454
  • 5
  • 16
1
vote
1 answer

processing and null pointer exception popping up

so i am using the Processing IDE and keep getting this strange null pointer exception. Exception in thread "main" java.lang.NullPointerException at processing.core.PApplet.displayable(PApplet.java:9944) at…
Joe
  • 1,286
  • 7
  • 34
  • 51
1
vote
2 answers

Error while loading shared libraries: libjli.so in Java

I have ElementaryOS installed. I am running Processing IDE in the terminal by running ./processing in the processing-3.3.4 directory. I'm getting this error: java: error while loading shared libraries: libjli.so: cannot open shared object file: No…
MGTM
  • 11
  • 1
  • 3
1
2 3