3D models (obj files) show wrong materials and lights in 2.0b8
Hi,when working with some 3D models visualization in Processing 2.0b8 I noticed that all models loaded from obj files seems to be rendered with a blue light and, if no texture is assigned, instead of...
View ArticleRe : Please Use Tools- Fix the Serial Library??
I figured this out later on yesterday. Thanks for the help though. Now if I ever have this problem again I can reference this.
View ArticleRe : 3D models (obj files) show wrong materials and lights in 2.0b8
I can confirm this issue, probably due to some regression between b7 and b8. I opened an entry about it in the issues section of the repository. Thanks for reporting.
View ArticlePShape memory leak in windows
Hi, I have an array of PShapes that I'm using to construct a line of data in a graph. I add new line fragments to a linkedlist every time there is new data on each frame. After adding these segments...
View ArticleRe : PShape memory leak in windows
I don't see it in the code you show, but it might be possible that the bug https://github.com/processing/processing/issues/1391 is relevant, if you use image() somewhere. Otherwise, it might be a...
View ArticleCode Help
Why does my code use so much memory, and how can I fix that? It begins to cause my computer to lag and even sometimes freeze.Here is the code:import ddf.minim.analysis.*;import ddf.minim.*;Minim...
View ArticleRe : Code Help
Hi !The memory consuming line isfade = get(0, 0, width, height);in your draw()Which seems to be a memory leak bug in the actual beta ...edit: I've reported it =...
View ArticleRe : Code Help
Actually, there was already a bug opened on the topic: https://github.com/processing/processing/issues/1391The issue is less with get() and more with image()...PS.: Try to use better subject line, like...
View Article3D Error (OpenGL)
Hi, I'm new to Processing and I'm studying a tutorial.Until now all just worked fine but now I'n not able to make 3D capabilities work.When I run the codeimport processing.opengl.*;size(500, 300,...
View Articlepdf export errors
Hello. I am trying to do some simple drawings and export them as pdfs so I can import them to a laser cutter. However I am getting two types of error and having looked through the forum cant find a...
View ArticleRe : pdf export errors
"By which I infer that the PDF library is now part of the central core of Processing so I do need this line at the start"It always was part of the core libraries of Processing (at least for several...
View ArticleRe : Code Help
The problem is when using image() with lot of different images, whatever the way they were created.
View ArticleRe : pdf export errors
Hi PhiLho,Thank you for responding.Your first statement clarifies my understanding of the relationship between the .pdf export library and Processing. I thought it had been brought 'inside' rather than...
View ArticleFIR Band Pass filtering in processing
Hi and thanks,I am a DSP beginner, so this question will be reflective of that.I am trying to work my way through the implementation of band pass filtering with convolution.My question is this. I have...
View ArticleVideo Playback jerky in Win 8
Hi,I'm having video playback issues with a sketch using the standard video library in Processing 2.0b8 on a Windows 8 x64 machine. I'm attempting to play the video through the sketch in HD (1920,...
View ArticleRe : pdf export errors
Aha! It is must better with full message!It looks like you have a PDF library in your sketchbook, as an additional library.Perhaps try and remove (or move elsewhere) the pdf folder in the...
View ArticlePShape not drawing
Hi, I'm using a Windows 7 machine and Processing 2.0b8 and I'm simply trying to draw a PShape that will translate across the screen but the line is not showing up. Anybody see the problem?private...
View ArticleRe : PShape not drawing
I see you come from a Java world.You don't need all the "this.", "private", or "System.out." stuff, Processing simplified this...Note that you use endShape() before the last drawing orders. Move it...
View ArticleRe : 3D Error (OpenGL)
ehm... I didn't realize that processing 2 is still in beta. I downgraded to processing 1 and now it all works fine! :-)
View Article