| Index \ Search \ Logout |
| 1 | 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 |
|||
| 2 | Programming Questions & Help / Other Libraries / Re: using cocoa library to run applescript on: Jul 5th, 2010, 8:34am |
||
|
|||
on Mar 27th, 2010, 3:07pm: 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/ |
|||
| 3 | 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 |
|||
| 4 | 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/ |
|||
| 5 | 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. |
|||
| 6 | 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.*; |
|||
| 7 | Discussion / Exhibition / 64-bit images - Just for fun project on: Jun 18th, 2010, 12:35pm |
||
|
|||
So last night i was scrolling through the sample for "Processing: a programming handbook for visual designers and artists" to see what it's about and the interview with Jared Tarbell really caught my eye with his "Fractal.Invaders" and i remember trying to do something like it myself some years ago but failing badly, basically my idea was to do it all with one "big" recursive function - long story short: Stack overflow. Anyways, so i thought "hey lets try it again, i must be able to come up with some smart way of doing it" and as it turns out i was. So i thought i'd share what i came up with: Code:
I'd like to point out that while the code is indeed mine, the idea of mirroring the random-pattern to create space invader-like creature belongs to Jared (as far as i can tell). This code is just my solution to the program he described. Also i haven't actually seen Jared's source code for it was in .fla format and im still downloading flash. There, just wanted to point that out so no one is offended or confused :) Usage: Click to create a new random thingy. |
|||
| 8 | Programming Questions & Help / Syntax Questions / Re: loadStrings on: Jun 18th, 2010, 12:13pm |
||
|
|||
That gives me the same error, if i try: Code: int numPics = 292; // change with number of points, numPics = # pictures If I just try: Code: int numPics = 292; // change with number of points, numPics = # pictures I get "cannot convert from String[] to String[][]". It does actually work if I make spec just a String[] and don't specify spec[k], but that isn't what I want it to do. I want each spec[k] to be one filename so that I can then split the data from each file into the form I need for my graph. |
|||
| 9 | Programming Questions & Help / Syntax Questions / Re: open console in draw window. Is possible? on: Jun 18th, 2010, 12:00pm |
||
|
|||
Looks like it -- I haven't done it but check out http://java.sun.com/javase/6/docs/api/java/io/Console.html |
|||
| 10 | Programming Questions & Help / Syntax Questions / Re: loadStrings on: Jun 18th, 2010, 11:25am |
||
|
|||
What's different is that loadStrings() returns an array of Strings, while loadImage() only returns a single PImage. You should make spec an array of arrays of Strings - a String [][] - since that's what you're really trying to use it as. |
|||
