[PD] OS X PD-Extended - help-path question

2008-07-19 Thread Luigi Rensinghoff
Hi List A Little question about the helppath-startup flag... I am using Pd version 0.40.3-extended-20080622 on OSX Macbook/Intel The lib/path definitions finally work fine, but i wonder where i have to put an additional -helppath folder. I made a patch where all the mapping - objects are

Re: [PD] background color of instances of abstraction

2008-07-19 Thread Atte André Jensen
marius schebella wrote: either put a canvas in the background and change it via send/receive This seems like an easy thing, but I get cnv: no method for 'float'. What message could I send to a canvas to make it red? or use sys_gui in combination with hcs/canvas_name which lets you change

Re: [PD] background color of instances of abstraction

2008-07-19 Thread marius schebella
Atte André Jensen wrote: marius schebella wrote: either put a canvas in the background and change it via send/receive This seems like an easy thing, but I get cnv: no method for 'float'. What message could I send to a canvas to make it red? you have to send a message like color 16 to the

Re: [PD] pdlua also into vanilla?

2008-07-19 Thread marius schebella
Hans-Christoph Steiner wrote: As a test yes, but not for the release. It's changing too fast right now to maintain backwards compatibility, so including it would cause more problems than it would solve. I am not sure, if it really changes, or if it only adds new features. I think the big

[PD] dumpOSC problems couldn't create

2008-07-19 Thread Maíra Sala
Hi, I'm experiencing some very odd thing. When I open my patch, with a dumpOSC and a OSCRoute, sometimes the dumpOSC box can't be created. As it's not allways I'm sure is not a path problems to the library. As I'm working in something that needs to be kind of stable, I'm getting a bit

Re: [PD] dumpOSC problems couldn't create

2008-07-19 Thread Claude Heiland-Allen
Maíra Sala wrote: Hi, I'm experiencing some very odd thing. When I open my patch, with a dumpOSC and a OSCRoute, sometimes the dumpOSC box can't be created. As it's not allways I'm sure is not a path problems to the library. As I'm working in something that needs to be kind of stable,

Re: [PD] dumpOSC problems couldn't create

2008-07-19 Thread zmoelnig
Quoting Claude Heiland-Allen [EMAIL PROTECTED]: [dumpOSC ] needs to be able to bind to network port , if something else is already using it (or if the previous user of the port hasn't timed out completely) then dumpOSC will fail to create. which btw, is by design and not a bug. it is

[PD] pdlua binaries

2008-07-19 Thread marius schebella
hi, I thought, although compiling is very very easy.., for people who don't have xcode installed (which comes with osx 10.5, no??) I put osx 10.5 binaries of pdlua online. http://www.parasitaere-kapazitaeten.net/pdlua_binaries. Somehow I am having troubles with the luagl portion, though. does

[PD] new luagl

2008-07-19 Thread marius schebella
hi, here's the code that I am trying to run: require 'luagl' local testgl1 = pd.Class:new():register(testgl1) function testgl1:initialize(name, atoms) self.inlets = 2 self.max = 1 pd.post(tostring(self)) return true end function testgl1:in_1(sel, atoms) if sel ==

Re: [PD] better tabread4~

2008-07-19 Thread Charles Henry
Sorry it took me so long to make something usable out of that mess. I played around with factoring but it seems like it got me nowhere, so I finally just multiplied out all the polynomials to get the usual form. (given input points g[-2] g[-1] g[0] g[1] g[2] g[3] a5 = 3/64*g[-2] + 13/64*g[-1]

Re: [PD] better tabread4~

2008-07-19 Thread Matt Barber
Chuck, Thanks again for this. Quick question: out of curiosity, how much would this differ from the one which has the standard derivative approximations? Also, if one wanted to put together the one with the standard approximations, would you use the best approximations available for each

Re: [PD] honk -- update

2008-07-19 Thread Hans-Christoph Steiner
I am cc'ing the list since I think this is of general interest: The best thing to do would be to make them into a libdir, then users can install them by copying them into the externals folders: http://puredata.info/docs/faq/how-do-i-install-externals-and-help- files-with-pd-extended

Re: [PD] pdlua also into vanilla?

2008-07-19 Thread Jack
Le 19 juil. 08 à 16:40, marius schebella a écrit : Hans-Christoph Steiner wrote: As a test yes, but not for the release. It's changing too fast right now to maintain backwards compatibility, so including it would cause more problems than it would solve. I am not sure, if it really

Re: [PD] dumpOSC problems couldn't create

2008-07-19 Thread Jack
Le 19 juil. 08 à 17:25, [EMAIL PROTECTED] a écrit : Quoting Claude Heiland-Allen [EMAIL PROTECTED]: [dumpOSC ] needs to be able to bind to network port , if something else is already using it (or if the previous user of the port hasn't timed out completely) then dumpOSC will

Re: [PD] [nosleep] WAS: how to avoid (most/many/some) readsf~ dropouts

2008-07-19 Thread Chris McCormick
On Fri, Jul 18, 2008 at 08:29:16PM -0400, Mathieu Bouchard wrote: On Wed, 16 Jul 2008, Hans-Christoph Steiner wrote: They are not my namespaces. I neither wrote the code, nor figured out their usage. I just think it is a pretty good system to use. Well, given how much Günter is not

Re: [PD] better tabread4~

2008-07-19 Thread Matt Barber
The interpolation function is a filter. There would be no need to have an anti-aliasing filter and and interpolation function--there's just the one function. We use the fast interpolating function at speeds = 1. But we need a general interpolation function as a function of speed that