Could anyone point me in the right direction?
I'm trying to use [pipe] to delay the output from [linear path] to but I'm getting an error message.
Thanks
[url]http://www.pdpatchrepo.info/hurleur/circles-array1-error.pd[/url]
Expected 'list' but got 'float' \[linear path\]-\[pipe\]-
Could anyone point me in the right direction?
I'm trying to use [pipe] to delay the output from [linear path] to but I'm getting an error message.
Thanks
[url]http://www.pdpatchrepo.info/hurleur/circles-array1-error.pd[/url]
have a look at pipe's help file,
you need to unpack the output of output of your [linear_path] object with [unpack f f f ] , and then send each of the outputs into the inlets of [pipe f f f 100] or something like that.
finally, i don't know how the right inlet of works, but you may need to pack the pipe output again before going into that.
to tell the truth, i have only very very basic knowledge of GEM, but it is easy to figure these things out if you follow this method:
Okay, mod. Now you just solved a problem for me. I never knew [pipe] could delay multiple values like that. I've got a curved line generator that I've been wanting make envelopes with using comma-separated lists like [vline~], and I think this might be the answer!
Perfect! Thanks mod.
I was assuming because pipe accepted lists you could just send the whole list.
But if you unpack and then pack it works fine. Like so...
[linear_path]
|
[unpack f f f]
| | |
[pipe f f f 100]
| | |
[pack f f f]
|
Thanks again.
Oops! Looks like something went wrong!