Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread zmoelnig
Quoting hard off [EMAIL PROTECTED]: [pack s s] | [makesymbol %s%s] this would require zexy. and when you already need zexy, i would suggest to use [loadbang] | [symbol( | | [list2symbol] | mfg.asdr IOhannes

[PD] [announce] dssi~ PPC binary available

2007-04-05 Thread Jamie Bullock
Hi, This is just a quick note to say that a binary release of [dssi~] for the PPC can now be found at http://www.puredata.org/Members/jb The tarball includes everything necessary to get the plugin host running including a liblo binary and a couple of plugins. Enjoy! Jamie

Re: [PD] Mediamatic workshop

2007-04-05 Thread robbert van hulzen
please keep us informed, any idea when it would be yet? On 4/5/07 6:39 AM, padawan12 [EMAIL PROTECTED] wrote: There's a possible April workshop in Bristol with a slant on music production, so that will be about sequencers, synths, more about MIDI and OSC.

[PD] linear - log - what's the equation?

2007-04-05 Thread hard off
i have lots of sliders that use the log function, but i want to convert them to liner so they will be compatible with my midi knobs. how do i use the [log] object to convert a linear slider's output into the same values as a similar logarithmic one? for example: linear slider min=0 max=100

Re: [PD] linear - log - what's the equation?

2007-04-05 Thread Roman Haefeli
funny, just yesterday i made a lin-log-conversion abstraction. see attachment On Thu, 2007-04-05 at 20:47 +0900, hard off wrote: i have lots of sliders that use the log function, but i want to convert them to liner so they will be compatible with my midi knobs. how do i use the [log] object

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread hard off
IOhannes, is makesymbol going to be zapped from zexy in the future? is there any particular reason why we shouldn't use makesymbol? ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] gcanvas and GoP

2007-04-05 Thread Frank Barknecht
Hallo, Hans-Christoph Steiner hat gesagt: // Hans-Christoph Steiner wrote: I would love to be able to use gcanvas for GoP objects. But it doesn't seem to work with GoP. It's very handy to put a gcanvas behind something like an array to get the click data. Maybe someone could tell me

[PD] Question about startup path

2007-04-05 Thread Jiri Heitlager | dadata.org
Is it possible to add extra input fields in the pdpreferencespath and pdpreferencesstartup I am using OSX. Thank you, Jiri ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread Frank Barknecht
Hallo, hard off hat gesagt: // hard off wrote: IOhannes, is makesymbol going to be zapped from zexy in the future? is there any particular reason why we shouldn't use makesymbol? I don't know about the future of makesymbol, but on many occasions you could use makefilename instead, and for

Re: [PD] linear - log - what's the equation?

2007-04-05 Thread hard off
thanks roman, that's spot on. :) ___ PD-list@iem.at mailing list UNSUBSCRIBE and account-management - http://lists.puredata.info/listinfo/pd-list

[PD] Masking Geos in gem help

2007-04-05 Thread nosehair911
I have been trying to figure out how to mask Geos with other Geos but I have hit a big roadblock. Following the example in gem/openGL I have made 2 objects but it seems that Gem will only recognize 1 or the other. I have attached an example. If anyone with openGL understanding could give

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread hard off
i have so many patches with makesymbol constructs. personally i hope it stays in there just so i don't have to go and redo them all when i upgrade to 0.40 i guess until then i'll start using [l2s] ___ PD-list@iem.at mailing list UNSUBSCRIBE and

Re: [PD] Question about startup path

2007-04-05 Thread Max Neupert
a very popular question. see the tips and tricks section on puredata.org (make sure to search the archive before posting) http://puredata.org/docs/tutorials/TipsAndTricks#add-more-entries-to- the-path-and-library-dialogs Am 05.04.2007 um 15:45 schrieb Jiri Heitlager | dadata.org: Is it

[PD] buffer serial data ideas

2007-04-05 Thread nicholas ward
Hi, Im trying to smooth out a somewhat bursty serial data stream in pd. Ive data coming in from a bluetooth arduino. No problems there. Im using a sampling rate of 1kHz on the arduino. Im reckoning the comport pulls in data from the serial every 10ms. How could i set up a buffer to smooth

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread Roman Haefeli
this thread is getting a bit funny and people start to be afraid about [makesymbol] being deprecated ;-) as i understand IOhannes, there is nothing wrong with [makesymbol] (nor with any other proposed solution). i think, he just wanted to point out that when externals are involved anyway -

Re: [PD] buffer serial data ideas

2007-04-05 Thread Roman Haefeli
hello nickly i think that would be suitable task for [list-fifo] from frank's list-abs collection. btw: pd's built-in [metro] _is_ very accurate (even more than sample-accurate) [metro 1] | |[data from arduino] || [list-fifo] | [output with 1 value/ms] roman On Thu, 2007-04-05 at

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread Kevin McCoy
Thanks Roman - nice consolidation. And thanks everyone else - when I have a minute I am going to finish the patch :) NOW if I could only get it to stay the same size as the GOP bounds.. a big creation argument makes the object box really long! Anyone know any tricks with that? I haven't tried

Re: [PD] Masking Geos in gem help

2007-04-05 Thread Cypod
hi nosehair, In GLBuffer it seems you are sending both geos to the same buffer. GL_STENCIL_TEST. by changing them so they correspond to the GLend statements you can get the cirlce masking out the square circle from the second gemhead This code seams very foreign to me, I seem to be missing a

Re: [PD] [announce] dssi~ PPC binary available

2007-04-05 Thread Hans-Christoph Steiner
That sounds very handy. It would be awesome if this could be built automatically as part of Pd-extended. liblo is already installed on the auto-build machines. .hc On Apr 5, 2007, at 3:59 AM, Jamie Bullock wrote: Hi, This is just a quick note to say that a binary release of [dssi~]

Re: [PD] Masking Geos in gem help

2007-04-05 Thread nosehair911
Cypod, I found it under /examples/Gem/openGL/03.stencilBuffer.pd. There is just an example and no documantation so I am just trying to figure it out on my own. Thanks for your help. Alain From: Cypod [EMAIL PROTECTED] Date: 2007/04/05 Thu PM 01:31:44 EDT To: [EMAIL PROTECTED] [EMAIL

Re: [PD] how to pack symbols together and eliminate the space?

2007-04-05 Thread Stephen Sinclair
Hello, I posted an abstraction a while ago that handles this problem: http://www.mail-archive.com/pd-list@iem.at/msg04851.html It will concatenate two inputs. It works with symbols and numbers correctly. (Converts numbers to symbols.) It uses makefilename internally. Cheers, Steve On

[PD] advcam

2007-04-05 Thread marius schebella
Hi, I made a new navigation abstraction for the gemwindow. it is called advcam (advanced camera) and by connecting it to your gemwin you can use alt key (and additionally shift key) plus a 3 button(!) mouse to change the view. it has two modes: one is similar to 3d modelling programs, where

Re: [PD] Masking Geos in gem help

2007-04-05 Thread chris clepper
On 4/5/07, Cypod [EMAIL PROTECTED] wrote: This code seams very foreign to me, I seem to be missing a few of the abstractions, where is there documentation on GEMgl ? The OpenGL Red Book. ___ PD-list@iem.at mailing list UNSUBSCRIBE and