Re: [PD] can [bp~] be obtained with biquad coefficients?

2014-04-14 Thread IOhannes m zmoelnig
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 On 2014-04-12 08:45, Alexandre Torres Porres wrote: { t_sample output = *in++ + fb1 * last + fb2 * prev; if (PD_BIGORSMALL(output)) output = 0; *out++ = ff1 * output + ff2 * last + ff3 * prev; prev = last; last = output; } Well, I made a

[PD] GEM patch

2014-04-14 Thread kate sweeney
Hello, This message keeps appearing in the console window tgl: no method for 'gem_state'. I have this patch in a subpatch. Many thanks. attachment: Screen Shot 2014-04-14 at 16.25.34.png___ Pd-list@iem.at

Re: [PD] GEM patch

2014-04-14 Thread AP Vague
I don't think you need to send [gemhead] to the toggle--I'm pretty sure this configuration just doesn't do anything (as far as the toggle goes). If you just need to start the [metro] you can start it with a bang using a [t b f] from the number atom that sets the [metro] speed. If you need to

Re: [PD] GEM patch

2014-04-14 Thread Antonio Roberts
The tgl object is expecting a 0 or 1 message, not the gem_state message that [gemhead] sends. You can convert its messages to a bang with the [bang] object but then the toggle will constantly keep turning on and off On 14 April 2014 16:15, kate sweeney m.k.swee...@hotmail.com wrote: Hello,

Re: [PD] Keeping Number box's

2014-04-14 Thread AP Vague
If you know exactly what you want the values to be before you open the patch you can replace the number atoms with messages, ie [32( instead of an atom. And then just send them a [loadbang] to initialize whatever they're going into... On Mon, Apr 14, 2014 at 1:47 PM, kate sweeney

Re: [PD] Keeping Number box's

2014-04-14 Thread Pierrick Saillant
Hello,You need to initialise the value.You can use the [loadbang] object to have a «bang» when your open your patch.And after use message box to set the different value.To have something better and to avoid problems it’s better to use a trigger to sequentialize the initialization.There is an

Re: [PD] Keeping Number box's

2014-04-14 Thread Phil Stone
Or use the Number2 number box, and set its init attribute in properties. It will then init itself with the last value that was in the box at the time the parent patch was saved. On 4/14/14, 10:59 AM, AP Vague wrote: If you know exactly what you want the values to be before you open the patch

Re: [PD] Keeping Number box's

2014-04-14 Thread AP Vague
Also [metro] will default to the creation argument, so you can just have it be [metro 32] with nothing going into the right inlet and it'll use that value. On Mon, Apr 14, 2014 at 1:59 PM, AP Vague apva...@gmail.com wrote: If you know exactly what you want the values to be before you open the

Re: [PD] Keeping Number box's

2014-04-14 Thread Jonathan Wilkes
On 04/14/2014 02:03 PM, Phil Stone wrote: Or use the Number2 number box, and set its init attribute in properties. It will then init itself with the last value that was in the box at the time the parent patch was saved. I try to avoid the iemgui init method because it isn't represented in

Re: [PD] Keeping Number box's

2014-04-14 Thread Ivica Ico Bukvic
If you are using pd-l2ork, there is also universal preset system built into it using preset_hub and preset_node objects. From: pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] On Behalf Of Phil Stone Sent: Monday, April 14, 2014 2:04 PM To: AP Vague; pd-list@iem.at Subject: Re: [PD]

Re: [PD] Keeping Number box's

2014-04-14 Thread Ivica Ico Bukvic
Also, FWIW, in pd-l2ork trigger can use static values, e.g. [trigger 1 b 0 blue] would output symbol blue from the rightmost outlet, then a zero, then a bang, and then a 1. From: pd-list-boun...@iem.at [mailto:pd-list-boun...@iem.at] On Behalf Of Pierrick Saillant Sent: Monday, April 14, 2014

Re: [PD] Keeping Number box's

2014-04-14 Thread Phil Stone
oops, meant to send this to the list, sorry Jonathan. On 4/14/14, 1:11 PM, Phil Stone wrote: You have a point, if you are init'ing to zero; otherwise, it's easy to see that a Number2 box is init'd when you open the patch, because it has a non-zero value in it. But yeah, it's a little

[PD] Missing FLOSS Manual Files

2014-04-14 Thread Nick Arner
Hello, I was hoping to download the example files from the Building a Synthesizerhttp://en.flossmanuals.net/pure-data/audio-tutorials/simple-synth/ section of the FLOSS manual but it appears the files are missing (I got a Not Found error when I clicked on the download

Re: [PD] Edit / Text Editor - what's the use?

2014-04-14 Thread Billy Stiltner
use [pointer] to traverse right click [text] or help browser-Pure Data/5. Reference/text-object.pd On Thu, Apr 3, 2014 at 2:28 PM, Alexandre Torres Porres por...@gmail.comwrote: Hi there, I see there's a new [text] object in Pd 0.45 that defines, opens and edits text. This raises some