Re : PShape not drawing
Haha yeah I know, but I switch back and forth between the two so I stick with java syntax. Anyway, changing the position of the stroke commands didn't fix the problem. Maybe this is a bug?
View ArticleRe : PShape not drawing
It is not a bug because the shape examples that come with Processing work. I changed your setup code Highlighted) and it worked.public void setup() { size(1280, 720, P2D); this.shape = createShape();...
View ArticleRe : PShape not drawing
Huh, that's odd because I changed my code to exactly that and I still only see a blank white screen. I also changed the frameRate to 2 thinking that maybe it was being drawn too quickly but that also...
View ArticleRe : PShape not drawing
I am using 2.0b8 on Windows 7 64 bitNote the change from setStroke to stroke and setStrokeWeight to strokeWeight.
View ArticleRe : 3D Error (OpenGL)
I tried your code in 2.0b8 with and without the import statement and in both cases it worked without error.If you run the code in Processing 1.5.1 the import statement is redundant because the P3D...
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... I'm the opposite; never made a Java program yet! :PHowever, is it true...
View ArticleRe : PShape not drawing
You don't have to use this all the time. The only time it would be required to use this is if you have two variables with the same name - one a local variable, and the other a member of a class - and...
View ArticleRe : PShape not drawing
Ah, it was the method name change that was the problem. Thank you.
View Articlecontrolling video's audio levels
Hi,I can't find a method() to control the audio levels of a video playing in a sketch (using Processing 2.0b8 standard video library). Is there such a method. if not any suggestions? ...besides...
View ArticleSound with Minim no longer works
Hi, when I try to play sound with minim from an example file PlayAFile.pde in Processing 2.08b I get this errorlibEGL warning: DRI2: failed to authenticatelibEGL warning: DRI2: failed to open swrast...
View ArticlePShape.translate does not seem to update vertex position. Bug?
In the code below I am making translations to a line and printing the line's x coordinate. The value that is printed never changes even though the line is clearly moving on the screen. Is this a...
View ArticleMINIM LIB. AudioRecorder Mac OSX5.8 & 6.8. file created in sketch folder but...
I used the code pasted below at home: (audio interface M-Audio Firewire) and at uni: (M-audio oxygen (usb)) on the mac osx vers.s above (5.8 & 6.8 respectively). On OSX.5.8 only P5: 1.5.1 will...
View ArticleRe : AudioRecoder feedback sounds.
hi - did you ever find out what was causing the feedback ?- i get that when using audioPlayer esp. with other waveforms in the same sketch - any ideas on how to ensure that the output is clean?
View ArticleRe : processing playback
Hi - i know this was a while ago - but i have the same problem - i have just put a message up called:" Minim lib: AudioRecorder mac osx.5.8 and 6.8 file created in sketch folder but no audio recorded -...
View ArticleProcessing RS-232 data corruption.
I'm attempting to log tempature over time using an Arduino and Processing. The Arduino communitates with Processing using RS-232 however I am getting corrupted data when I attempt to read the Arduino...
View ArticleRe : PShape.translate does not seem to update vertex position. Bug?
I don't think so. Translate doesn't affect individual vertices, but rather the PShape's PMatrix. In other words, the vertices are (individual) object coordinates, while operations like translate,...
View ArticleI can't run processing
hi Processing, since few days i get a serious problem i can't run any sketch of processing 1.5.1i think it's about a 32 bit java version missing but i get Java 7 update 13 in my computer...i try to...
View Articlevideo queue mixer
hi there im trying to develop a videomixer working by the following:its for an automatic poem generator (markov)starts op - nothing playing but loaded same video into two movie objectsgets an message...
View ArticleRe : video queue mixer
something like it is here i guess:https://forum.processing.org/topic/gsvideo-chaining-videos_____allways on the lookout for new toys to mod_____
View ArticleRe : video queue mixer
here is my present mockup (bad fast draft)/** * Frames * by Andres Colubri. * * Moves through the video one frame at the time by using the * arrow keys. It estimates the frame counts using the...
View Article