* FluidPlotter and test file
highlight method sets color
* FluidPlotter is beta
* added some error checks and warnings
* FluidWaveform in alpha
* updated fluid plotter to require fewer external defers
* fluid plotter synced up with james' max one, helpfile _started_
* fix/FluidPlotter
only worked with KMeans, not it also works with a user created LabelSet
* FluidPlotter helpfile done
* FluidWaveform delete temp file
delete it right away instead of on close
* initialize with internal dict
a plotter initialized with no 'dict' now makes an empty internal dict so that one can use 'setPoint' and 'addPoint' right off the bat
* FluidWaveform helpfile made
Co-authored-by: tremblap <info@pierrealexandretremblay.com>
brought it in line with the max example.
the user must put the synth params and 2D slider where they want them, _and then_ click 'add point'.
also simplified some of the SC code.
* added FluidBufToKr.kr and FluidKrToBuf.kr
* tested a few more use cases, no problems detected
* Update release-packaging/Classes/FluidBufToKr.sc
Co-authored-by: weefuzzy <gungwho@gmail.com>
* semicolon
added a the end of line 4
* check if the buffer is huge (like an audio file)
if one tries to pass a huge buffer to either, this is throw an error and report the number of frames in that buffer. I tested it with an audio file-size buffer and it froze the server (not crash though, the bar stayed green...?).
* added huge buffer check to BufToKr as well
* added one more validity check and re tested
* FluidBufToKr now can return single value or array
if the buffer is only one frame long, it will return a single value instead of an array of length one (which is what it did before)
Co-authored-by: weefuzzy <gungwho@gmail.com>