Anyone got an example/help-file that explains the intricacies of how the order in which you place cables affects the order in which the operation is done? I attempted some 'further' maths last night with the standard pd functions and although I finally got it to work, there were definitely some very strange things going on, even though I was attempting to control the ordering/flow with many bangs. Some things that should have worked didn't at all, so I ended up backing up and finding another way to do it.... and another.
usually Pd works first connection created is first connection executed. you can also use the trigger object, which determines the execution from right (first) to left (last) order. this also makes your order visible for someone else or for later times. marius.
----- Original Message ----- From: "matthew jones" M.Jones@signal.qinetiq.com To: PD-list@iem.kug.ac.at Sent: Thursday, November 28, 2002 11:30 AM Subject: [PD] Order of cabling
Anyone got an example/help-file that explains the intricacies of how the order in which you place cables affects the order in which the operation
is
done? I attempted some 'further' maths last night with the standard pd functions and although I finally got it to work, there were definitely
some
very strange things going on, even though I was attempting to control the ordering/flow with many bangs. Some things that should have worked didn't at all, so I ended up backing up and finding another way to do it.... and another.
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
Hi, matthew jones hat gesagt: // matthew jones wrote:
Anyone got an example/help-file that explains the intricacies of how the order in which you place cables affects the order in which the operation is done?
It's best to never rely on the order, in which connections were made, for the functionality of your patches. If you need to be sure of the order, use trigger objects, that output thes messages from left to right:
[t f f b] gives: 1. bang, 2. float, 3. float in that order. See 2.control.examples/03.connections.pd
For signals' order you might want to read 3.audio.examples/73.control.blocksize.pd ciao
On Thu, 28 Nov 2002, Frank Barknecht wrote:
Hi, matthew jones hat gesagt: // matthew jones wrote:
Anyone got an example/help-file that explains the intricacies of how the order in which you place cables affects the order in which the operation is done?
It's best to never rely on the order, in which connections were made, for the functionality of your patches. If you need to be sure of the order, use trigger objects, that output thes messages from left to right:
I think you meant right to left.
[t f f b] gives: 1. bang, 2. float, 3. float in that order. See 2.control.examples/03.connections.pd
For signals' order you might want to read 3.audio.examples/73.control.blocksize.pd ciao -- Frank Barknecht _ ______footils.org__
PD-list mailing list PD-list@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-list
-- Larry Troxler -- lt@westnet.com -- Patterson, NY USA --
Hi, Larry Troxler hat gesagt: // Larry Troxler wrote:
On Thu, 28 Nov 2002, Frank Barknecht wrote:
It's best to never rely on the order, in which connections were made, for the functionality of your patches. If you need to be sure of the order, use trigger objects, that output thes messages from left to right:
I think you meant right to left.
Ah, yes. Thank you.
Frank Barknecht _ ______footils.org__