Re: [PD] Morse Code Translator / Decoder

2016-06-15 Thread Joel Matthys
Is [list-compare] from an external library? It's not in vanilla. Joel On 06/15/2016 12:25 PM, patrice colet wrote: Hello, I've made such patch to decode termites hammering into morse. It uses the process described by andy, and datastructure for storing characters, it could also now be

Re: [PD] [netsend] bug?

2016-05-06 Thread Joel Matthys
Another option is to use [makefilename %d] in place of this [float2symbol] abstraction. But I've never seen this clever abstraction. Thanks Jack! Joel On 05/06/2016 12:20 PM, Jack wrote: Forget an abstraction (float2symbol). ++ Jack Le 06/05/2016 19:15, Jack a écrit : Can you send a

Re: [PD] Menu fonts much too small on 4k screen

2016-04-17 Thread Joel Matthys
If it helps, here's a gui plugin I made to grab the mousewheel. Might be useful. https://github.com/jwmatthys/pd-mousewheel-plugin/blob/master/mousewheel-plugin.tcl Joel On 04/17/2016 05:40 PM, Miller Puckette wrote: I don't know how to get hold of mouse wheels yet... but will look at that.

Re: [PD] How to update Pd 0.45.4 to 0.46.7 0n Ubuntu 14.4 (Odroid XU4)

2015-12-20 Thread Joel Matthys
On Linux it's most common for your compiled binaries to be installed to /usr/local. I recommend you keep this default, because if you ever want to remove the version you created you can do it without messing with your all-important /usr folder. Ubuntu looks for binaries in /usr/local/bin

[PD] GUI plugin for mouse wheel

2015-10-29 Thread Joel Matthys
Hello all. On the Facebook group someone was asking for a way to access the mouse wheel in Pd. I realized that a GUI plugin could do it, and so I put one together. Here it is, in case anyone finds it useful: https://github.com/jwmatthys/pd-mousewheel-plugin It sends the MouseWheel delta (+1

Re: [PD] percolate binaries

2015-10-07 Thread Joel Matthys
gmail.com>>: didn't know about rtcmix~ great I'm on mavericks, using pd 0.46-7, downloaded it via deken, but it didn't work though :/ - I open the help file and it crashes 2015-10-07 15:32 GMT-03:00 Joel Matthys <jwmatt...@gmail.com <mailto:jwmatt...@gmail.com>

Re: [PD] percolate binaries

2015-10-07 Thread Joel Matthys
As far as I know, percolate binaries just aren't available for Pd anymore. But rtcmix~ has all of the STK instruments and several other physical models as well. It's available for Linux and OSX, in Deken and here: http://puredata.info/Members/jwmatthys/ You can read documentation on the

Re: [PD] Looking for some advice

2015-09-13 Thread Joel Matthys
Do you have a particular reason you need to recompile with the externals bundled in the app? Virtually all of the externals that work with extended will work as-is with Vanilla, so you can just make a pd-externals folder in your home directory and copy the .pd_darwin files you need there from

Re: [PD] [PD-announce] announcing Context, a modular sequencer for PD

2015-08-15 Thread Joel Matthys
FWIW, when I make a project I want to share with others, I copy the externals to the project folder and include them in the download. That way people can just use Vanilla without needing to download or apt-get other things. Joel On 08/15/2015 02:55 AM, IOhannes m zmölnig wrote: On

[PD] segfault on external with libpd JUCE

2015-08-05 Thread Joel Matthys
Hello all. I'm working on a project with libpd JUCE. I'm trying to include a couple of externals. Following directions from here: https://github.com/danomatika/ofxPd#adding-pure-data-external-libraries-to-ofxpd I included the source files in my JUCE project, #included them in my audio

[PD] Object or message to exit Pd

2015-07-26 Thread Joel Matthys
Is there a way to close Pd (exit the program) from within a Pd patch? Something like [pd exit( or an external? I guess I could use [shell] and execute a killall pd but that seems rather extreme. Thanks, Joel ___ Pd-list@lists.iem.at mailing list

Re: [PD] help cloning max's scale

2015-06-19 Thread Joel Matthys
You're using the [scale] formula from @classic_mode in Max7, which exists for compatibility with IRCAM, but it's clearly wrong. (There's no way mapping 13.3 from 0-127 to -1 to 1 should result in something so close to -1. Just try a few different exponents and you'll see that there's a bug in

Re: [PD] help cloning max's scale

2015-06-19 Thread Joel Matthys
by the object? Were you able to spot a parenthesis out of place or something that, if changed, would give the expected result? thanks cheers 2015-06-19 22:25 GMT-03:00 Joel Matthys jwmatt...@gmail.com mailto:jwmatt...@gmail.com: You're using the [scale] formula from @classic_mode in Max7, which

Re: [PD] haversine formula in Pd

2015-06-06 Thread Joel Matthys
You'll need to do the calculations in an external, where you can use double precision. And. TADA! Here's the external. I just copied in the C code from the Rosettacode link you sent. It gives 2887.26 as the result now. The external code is here: https://github.com/jwmatthys/haversine-pd

Re: [PD] Miller's Moogfilter

2015-01-14 Thread Joel Matthys
Is there anyone out there who could compile a Win32 version for me? I need a patch to work cross-platform, and I can handle the Linux and Darwin compiles but I don't have build access to a Windoze machine at the moment. Thanks for sharing this, Miller! Joel On 01/14/2015 02:18 PM, Miller

Re: [PD] Miller's Moogfilter

2015-01-14 Thread Joel Matthys
left separate I'll put it out as a self-contained muiltiplatform extern. I'd be more disposed to put it in 'extra' if it ever works out to include 'extra' objects in libpd - because I saw on this list people wanted that. cheers Miller On Wed, Jan 14, 2015 at 05:25:39PM -0600, Joel Matthys wrote

Re: [PD] dynamic loading in external

2015-01-09 Thread Joel Matthys
Have a look at the aubio external; that uses an external lib and is cross-platform. Looks like it uses waf instead of a makefile though. http://puredata.info/downloads/aubio/ Joel On 01/09/2015 05:52 PM, David Medine wrote: Indeed, the ldl methods seem to work, but this is a horrible pain. It