We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
1 | Programming Questions & Help / Electronics, Serial Library / May 20th 2010 3 45pm on: Nov 22nd, 2011, 8:24am |
||
|
|||
Welcome back to playing this crazy game we love so much You could wait until the new EP Generations comes out and see if challenges will be introduced again since well be getting memories back in that EP. Itll be out May 31, 2011 here in North America so not too long to wait now |
2 | Programming Questions & Help / Electronics, Serial Library / Test, just a test on: Nov 12th, 2011, 8:19am |
||
|
|||
Hello. And Bye. |
3 | Programming Questions & Help / Electronics, Serial Library / so so easy walker horse shoes fisher cat on: Nov 6th, 2011, 9:02pm |
||
|
|||
angiotensin i |
4 | Suggestions & Bugs / Website, Documentation, Book Bugs / Re: PGraphicsPDF on: Jun 3rd, 2011, 8:47am |
||
|
|||
sorry about that, it looks like those examples need to be cleaned up a bit. here's a fixed version of the one you mentioned: Quote: import processing.pdf.*; boolean recording; PGraphicsPDF pdf; void setup() { size(400, 400); pdf = (PGraphicsPDF) createGraphics(width, height, PDF, "pause-resume.pdf"); } void draw() { // Be sure not to call background, otherwise your file // will just accumulate lots of mess, only to become invisible // Draw something good here if (mousePressed) { line(pmouseX, pmouseY, mouseX, mouseY); } } void keyPressed() { if (key == 'r') { if (recording) { endRecord(); println("Recording stopped."); recording = false; } else { beginRecord(pdf); println("Recording started."); recording = true; } } else if (key == 'q') { if (recording) { endRecord(); } exit(); } } Unfortunately this example overwrites the previous recording. I mean you can keep in the PDF file only the last sequence of your drawing. Is there a way you could append the lines over and over or even press a key for nextPage() or something Thanks in advance |
5 | Discussion / Events, Publications, Opportunities / Re: online processing classes on: Jul 28th, 2010, 3:41pm |
||
|
|||
The course mentioned below is being offered here now: http://training.oreilly.com/arduino/ Cheers! -Joe on Jun 4th, 2010, 3:31pm: Hi, Interesting that you ask. I'm developing a class right now with O'Reilly Media that will be starting August 31st. It will be a live, free, video course, while it's going. There will also be a pay version that includes downloads (pdf of all slides etc.) and access to the videos anytime. It will be at http://training.oreilly.com and you can send an email to training@oreilly.com to be notified when the class is available. Cheers, Joseph Gray http://grauwald.com |
6 | Programming Questions & Help / Other Libraries / Re: using cocoa library to run applescript on: Jul 5th, 2010, 8:34am |
||
|
|||
I also cannot find "com" inside my /System/Library/Java folder... OS X 10.6.2 The Java/Cocoa bridge has been removed by Apple in 10.6. :-( AFAIK you can use the files from 10.5 – or switch to http://code.google.com/p/rococoa/ |
7 | Programming Questions & Help / Programs / Re: Using light, shading 3d on: Jun 30th, 2010, 1:31am |
||
|
|||
Hi everyone ! I'm pretty near the solution, but I cant make it work: I've got a sketch running with toxiclib's triangleMesh. I've got another one running with surfaceLib. They both work fine, and i can use useVertexNormals() with surfaceLib, but I can't figure out how to connect those two. I understand that it's possible to have a toxiclib's triangleMesh with the nice useVertexNormals from surfaceLib. But how ?! Does anyone have an example ? Thanks for your help |
8 | Programming Questions & Help / Video Capture, Movie Playback, Vision Libraries / Re: camara resolution erratic / windows 7x64 & Vista on: Jun 23rd, 2010, 7:13pm |
||
|
|||
I was having the same issue with video capture being distorted in Windows 7. Just installed winVDIG version 1.01 (not 1.05), it did the trick. You may download here: http://www.eden.net.nz/7/20071008/ |
9 | Programming Questions & Help / Programs / Re: Program to find the shortest path on: Jun 18th, 2010, 12:50pm |
||
|
|||
ox and oy is the x and y cordinates of the object that needs to move to the goal. gx and gy is the x and y position of the goal. thanks for the out of bounds comment. I'll try that. |
10 | Programming Questions & Help / Syntax Questions / why the outer circle does not fade away on: Jun 18th, 2010, 12:37pm |
||
|
|||
I'm just testing minim library, I want to create cirles that are fading away eventually. I get the main circle work(which radius is 2*radius), and I don't know why the outer ring doesn't work. P.S.: you need to change the add your own mp3 to the data folder. Code: import processing.video.*; |