├── .gitignore ├── COPYING ├── COPYING.LESSER ├── OBJECTS.txt ├── README ├── README.md ├── Xcode ├── ZenGarden.1 └── ZenGarden.xcodeproj │ └── project.pbxproj ├── examples ├── README └── wobbly.pd ├── jni ├── junit-4.8.2.jar ├── libs ├── Darwin-i386 │ └── README ├── Darwin │ ├── README │ └── libsndfile_x86.a ├── Linux-i386 │ └── README ├── Linux-i686 │ └── README ├── iOS │ ├── README │ └── libsndfile_iOS.a └── nds │ ├── libsndfile.a │ └── libzengarden.a ├── pd-patches ├── README ├── mic_am220.pd ├── simple_osc.pd └── unittests │ ├── MessagePrint.pd │ ├── README │ ├── SendReceive.pd │ ├── audio.one-second.pd │ ├── golden │ ├── MessagePrint.txt │ ├── SendReceive.txt │ └── mod_rem.txt │ ├── mod_rem.pd │ ├── pack.pd │ └── unpack.pd ├── pyExampleGarden.py ├── runme-java.sh ├── runme-python.sh ├── runme-test.sh ├── scripts └── object-coverage ├── src ├── Android.mk ├── Application.mk ├── ArrayArithmetic.h ├── BufferPool.cpp ├── BufferPool.h ├── ConnectionType.h ├── DeclareList.cpp ├── DeclareList.h ├── DelayReceiver.cpp ├── DelayReceiver.h ├── DspAdc.cpp ├── DspAdc.h ├── DspAdd.cpp ├── DspAdd.h ├── DspBandpassFilter.cpp ├── DspBandpassFilter.h ├── DspBang.cpp ├── DspBang.h ├── DspCatch.cpp ├── DspCatch.h ├── DspClip.cpp ├── DspClip.h ├── DspCosine.cpp ├── DspCosine.h ├── DspDac.cpp ├── DspDac.h ├── DspDelayRead.cpp ├── DspDelayRead.h ├── DspDelayWrite.cpp ├── DspDelayWrite.h ├── DspDivide.cpp ├── DspDivide.h ├── DspEnvelope.cpp ├── DspEnvelope.h ├── DspFilter.cpp ├── DspFilter.h ├── DspHighpassFilter.cpp ├── DspHighpassFilter.h ├── DspImplicitAdd.cpp ├── DspImplicitAdd.h ├── DspInlet.cpp ├── DspInlet.h ├── DspLetIndex.h ├── DspLine.cpp ├── DspLine.h ├── DspLog.cpp ├── DspLog.h ├── DspLowpassFilter.cpp ├── DspLowpassFilter.h ├── DspMinimum.cpp ├── DspMinimum.h ├── DspMultiply.cpp ├── DspMultiply.h ├── DspNoise.cpp ├── DspNoise.h ├── DspObject.cpp ├── DspObject.h ├── DspOsc.cpp ├── DspOsc.h ├── DspOutlet.cpp ├── DspOutlet.h ├── DspPhasor.cpp ├── DspPhasor.h ├── DspPrint.cpp ├── DspPrint.h ├── DspReceive.cpp ├── DspReceive.h ├── DspReciprocalSqrt.cpp ├── DspReciprocalSqrt.h ├── DspRfft.cpp ├── DspRfft.h ├── DspRifft.cpp ├── DspRifft.h ├── DspSend.cpp ├── DspSend.h ├── DspSignal.cpp ├── DspSignal.h ├── DspSnapshot.cpp ├── DspSnapshot.h ├── DspSqrt.cpp ├── DspSqrt.h ├── DspSubtract.cpp ├── DspSubtract.h ├── DspTablePlay.cpp ├── DspTablePlay.h ├── DspTableRead.cpp ├── DspTableRead.h ├── DspTableRead4.cpp ├── DspTableRead4.h ├── DspThrow.cpp ├── DspThrow.h ├── DspVCF.cpp ├── DspVCF.h ├── DspVariableDelay.cpp ├── DspVariableDelay.h ├── DspVariableLine.cpp ├── DspVariableLine.h ├── DspWrap.cpp ├── DspWrap.h ├── Makefile ├── Makefile.OS.Darwin-i386 ├── Makefile.OS.Darwin-x86_64 ├── Makefile.OS.Linux-i386 ├── Makefile.OS.Linux-i686 ├── Makefile.OS.nds ├── Makefile.jni.sourcefiles ├── Makefile.sourcefiles ├── MersenneTwister.h ├── MessageAbsoluteValue.cpp ├── MessageAbsoluteValue.h ├── MessageAdd.cpp ├── MessageAdd.h ├── MessageArcTangent.cpp ├── MessageArcTangent.h ├── MessageArcTangent2.cpp ├── MessageArcTangent2.h ├── MessageBang.cpp ├── MessageBang.h ├── MessageChange.cpp ├── MessageChange.h ├── MessageClip.cpp ├── MessageClip.h ├── MessageCosine.cpp ├── MessageCosine.h ├── MessageCputime.cpp ├── MessageCputime.h ├── MessageDbToPow.cpp ├── MessageDbToPow.h ├── MessageDbToRms.cpp ├── MessageDbToRms.h ├── MessageDeclare.cpp ├── MessageDeclare.h ├── MessageDelay.cpp ├── MessageDelay.h ├── MessageDiv.cpp ├── MessageDiv.h ├── MessageDivide.cpp ├── MessageDivide.h ├── MessageElement.cpp ├── MessageElement.h ├── MessageElementType.h ├── MessageEqualsEquals.cpp ├── MessageEqualsEquals.h ├── MessageExp.cpp ├── MessageExp.h ├── MessageFloat.cpp ├── MessageFloat.h ├── MessageFrequencyToMidi.cpp ├── MessageFrequencyToMidi.h ├── MessageGreaterThan.cpp ├── MessageGreaterThan.h ├── MessageGreaterThanOrEqualTo.cpp ├── MessageGreaterThanOrEqualTo.h ├── MessageInlet.cpp ├── MessageInlet.h ├── MessageInteger.cpp ├── MessageInteger.h ├── MessageLessThan.cpp ├── MessageLessThan.h ├── MessageLessThanOrEqualTo.cpp ├── MessageLessThanOrEqualTo.h ├── MessageLetIndex.h ├── MessageLetPair.h ├── MessageLine.cpp ├── MessageLine.h ├── MessageListAppend.cpp ├── MessageListAppend.h ├── MessageListLength.cpp ├── MessageListLength.h ├── MessageListPrepend.cpp ├── MessageListPrepend.h ├── MessageListSplit.cpp ├── MessageListSplit.h ├── MessageListTrim.cpp ├── MessageListTrim.h ├── MessageLoadbang.cpp ├── MessageLoadbang.h ├── MessageLog.cpp ├── MessageLog.h ├── MessageLogicalAnd.cpp ├── MessageLogicalAnd.h ├── MessageLogicalOr.cpp ├── MessageLogicalOr.h ├── MessageMakefilename.cpp ├── MessageMakefilename.h ├── MessageMaximum.cpp ├── MessageMaximum.h ├── MessageMessageBox.cpp ├── MessageMessageBox.h ├── MessageMetro.cpp ├── MessageMetro.h ├── MessageMidiToFrequency.cpp ├── MessageMidiToFrequency.h ├── MessageMinimum.cpp ├── MessageMinimum.h ├── MessageModulus.cpp ├── MessageModulus.h ├── MessageMoses.cpp ├── MessageMoses.h ├── MessageMultiply.cpp ├── MessageMultiply.h ├── MessageNamedDestination.h ├── MessageNotEquals.cpp ├── MessageNotEquals.h ├── MessageNotein.cpp ├── MessageNotein.h ├── MessageObject.cpp ├── MessageObject.h ├── MessageOpenPanel.cpp ├── MessageOpenPanel.h ├── MessageOutlet.cpp ├── MessageOutlet.h ├── MessagePack.cpp ├── MessagePack.h ├── MessagePipe.cpp ├── MessagePipe.h ├── MessagePow.cpp ├── MessagePow.h ├── MessagePowToDb.cpp ├── MessagePowToDb.h ├── MessagePrint.cpp ├── MessagePrint.h ├── MessageRandom.cpp ├── MessageRandom.h ├── MessageReceive.cpp ├── MessageReceive.h ├── MessageRemainder.cpp ├── MessageRemainder.h ├── MessageRmsToDb.cpp ├── MessageRmsToDb.h ├── MessageRoute.cpp ├── MessageRoute.h ├── MessageSamplerate.cpp ├── MessageSamplerate.h ├── MessageSelect.cpp ├── MessageSelect.h ├── MessageSend.cpp ├── MessageSend.h ├── MessageSendController.cpp ├── MessageSendController.h ├── MessageSine.cpp ├── MessageSine.h ├── MessageSoundfiler.cpp ├── MessageSoundfiler.h ├── MessageSpigot.cpp ├── MessageSpigot.h ├── MessageSqrt.cpp ├── MessageSqrt.h ├── MessageStripNote.cpp ├── MessageStripNote.h ├── MessageSubtract.cpp ├── MessageSubtract.h ├── MessageSwap.cpp ├── MessageSwap.h ├── MessageSwitch.cpp ├── MessageSwitch.h ├── MessageSymbol.cpp ├── MessageSymbol.h ├── MessageTable.cpp ├── MessageTable.h ├── MessageTableRead.cpp ├── MessageTableRead.h ├── MessageTableWrite.cpp ├── MessageTableWrite.h ├── MessageTangent.cpp ├── MessageTangent.h ├── MessageText.cpp ├── MessageText.h ├── MessageTimer.cpp ├── MessageTimer.h ├── MessageToggle.cpp ├── MessageToggle.h ├── MessageTrigger.cpp ├── MessageTrigger.h ├── MessageUnpack.cpp ├── MessageUnpack.h ├── MessageUntil.cpp ├── MessageUntil.h ├── MessageValue.cpp ├── MessageValue.h ├── MessageWrap.cpp ├── MessageWrap.h ├── ObjectFactoryMap.cpp ├── ObjectFactoryMap.h ├── ObjectLetPair.h ├── ObjectType.h ├── OrderedMessageQueue.cpp ├── OrderedMessageQueue.h ├── PdAbstractionDataBase.cpp ├── PdAbstractionDataBase.h ├── PdContext.cpp ├── PdContext.h ├── PdFileParser.cpp ├── PdFileParser.h ├── PdGraph.cpp ├── PdGraph.h ├── PdMessage.cpp ├── PdMessage.h ├── RemoteMessageReceiver.cpp ├── RemoteMessageReceiver.h ├── StaticUtils.cpp ├── StaticUtils.h ├── TableReceiverInterface.h ├── ZGCallbackFunction.h ├── ZenGarden.cpp ├── ZenGarden.h ├── ZenGardenDS │ ├── Makefile │ ├── README │ └── source │ │ └── main.c ├── main.cpp ├── me │ └── rjdj │ │ └── zengarden │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── ConnectionPair.java │ │ ├── ExampleGarden.java │ │ ├── Message.java │ │ ├── NativeLoadException.java │ │ ├── ZGContext.java │ │ ├── ZGGraph.java │ │ ├── ZGObject.java │ │ ├── ZenGardenAdapter.java │ │ ├── ZenGardenListener.java │ │ ├── manifest │ │ ├── me_rjdj_zengarden_ZGContext.h │ │ ├── me_rjdj_zengarden_ZGGraph.h │ │ ├── me_rjdj_zengarden_ZGObject.h │ │ ├── me_rjdj_zengarden_ZenGarden.h │ │ ├── zgcontext.cpp │ │ ├── zggraph.cpp │ │ ├── zgmessage.cpp │ │ ├── zgmessage.h │ │ └── zgobject.cpp ├── platform └── pyZenGarden.py └── test ├── MessageAbsoluteValue.golden.txt ├── MessageAbsoluteValue.pd ├── MessageAdd.golden.txt ├── MessageAdd.pd ├── MessageArcTangent.golden.txt ├── MessageArcTangent.pd ├── MessageArcTangent2.golden.txt ├── MessageArcTangent2.pd ├── MessageBang.golden.txt ├── MessageBang.pd ├── MessageChange.golden.txt ├── MessageChange.pd ├── MessageClip.golden.txt ├── MessageClip.pd ├── MessageCosine.golden.txt ├── MessageCosine.pd ├── MessageDbToPow.golden.txt ├── MessageDbToPow.pd ├── MessageDbToRms.golden.txt ├── MessageDbToRms.pd ├── MessageDelay.golden.txt ├── MessageDelay.pd ├── MessageDiv.golden.txt ├── MessageDiv.pd ├── MessageDivide.golden.txt ├── MessageDivide.pd ├── MessageEqualsEquals.golden.txt ├── MessageEqualsEquals.pd ├── MessageExp.golden.txt ├── MessageExp.pd ├── MessageFloat.golden.txt ├── MessageFloat.pd ├── MessageFrequencyToMidi.golden.txt ├── MessageFrequencyToMidi.pd ├── MessageGreaterThan.golden.txt ├── MessageGreaterThan.pd ├── MessageGreaterThanOrEqualTo.golden.txt ├── MessageGreaterThanOrEqualTo.pd ├── MessageInletOutlet.golden.txt ├── MessageInletOutlet.pd ├── MessageInteger.golden.txt ├── MessageInteger.pd ├── MessageLessThan.golden.txt ├── MessageLessThan.pd ├── MessageLessThanOrEqualTo.golden.txt ├── MessageLessThanOrEqualTo.pd ├── MessageLine.golden.txt ├── MessageLine.pd ├── MessageListAppend.golden.txt ├── MessageListAppend.pd ├── MessageListLength.golden.txt ├── MessageListLength.pd ├── MessageLoadbang.golden.txt ├── MessageLoadbang.pd ├── MessageLog.golden.txt ├── MessageLog.pd ├── MessageLogicalAnd.golden.txt ├── MessageLogicalAnd.pd ├── MessageLogicalOr.golden.txt ├── MessageLogicalOr.pd ├── MessageMakefilename.golden.txt ├── MessageMakefilename.pd ├── MessageMaximum.golden.txt ├── MessageMaximum.pd ├── MessageMessageBox.golden.txt ├── MessageMessageBox.pd ├── MessageMetro.golden.txt ├── MessageMetro.pd ├── MessageMidiToFrequency.golden.txt ├── MessageMidiToFrequency.pd ├── MessageMinimum.golden.txt ├── MessageMinimum.pd ├── MessageModulus.golden.txt ├── MessageModulus.pd ├── MessageMoses.golden.txt ├── MessageMoses.pd ├── MessageMultiply.golden.txt ├── MessageMultiply.pd ├── MessageNotEquals.golden.txt ├── MessageNotEquals.pd ├── MessagePack.golden.txt ├── MessagePack.pd ├── MessagePipe.golden.txt ├── MessagePipe.pd ├── MessagePow.golden.txt ├── MessagePow.pd ├── MessagePowToDb.golden.txt ├── MessagePowToDb.pd ├── MessagePrint.golden.txt ├── MessagePrint.pd ├── MessageRandom.golden.txt ├── MessageRandom.pd ├── MessageReceive.golden.txt ├── MessageReceive.pd ├── MessageRemainder.golden.txt ├── MessageRemainder.pd ├── MessageRmsToDb.golden.txt ├── MessageRmsToDb.pd ├── MessageRoute.golden.txt ├── MessageRoute.pd ├── MessageSelect.golden.txt ├── MessageSelect.pd ├── MessageSend.golden.txt ├── MessageSend.pd ├── MessageSend_variable.golden.txt ├── MessageSend_variable.pd ├── MessageSine.golden.txt ├── MessageSine.pd ├── MessageSpigot.golden.txt ├── MessageSpigot.pd ├── MessageSqrt.golden.txt ├── MessageSqrt.pd ├── MessageSubtract.golden.txt ├── MessageSubtract.pd ├── MessageSwap.golden.txt ├── MessageSwap.pd ├── MessageSymbol.golden.txt ├── MessageSymbol.pd ├── MessageTable.golden.txt ├── MessageTable.pd ├── MessageTangent.golden.txt ├── MessageTangent.pd ├── MessageTimer.golden.txt ├── MessageTimer.pd ├── MessageToggle.golden.txt ├── MessageToggle.pd ├── MessageTrigger.golden.txt ├── MessageTrigger.pd ├── MessageUnpack.golden.txt ├── MessageUnpack.pd ├── MessageUntil.golden.txt ├── MessageUntil.pd ├── MessageValue.golden.txt ├── MessageValue.pd ├── MessageWrap.golden.txt ├── MessageWrap.pd ├── RegisterReceiver.pd ├── dsp ├── DspCos.golden.wav ├── DspCos.pd ├── DspInletOutlet.pd ├── DspLine.pd ├── DspOsc.golden.wav ├── DspOsc.pd ├── DspPhasorSignal.golden.wav ├── DspPhasorSignal.pd ├── DspSendReceive.pd ├── DspThrowCatch.pd ├── DspWrap.golden.wav └── DspWrap.pd ├── me └── rjdj │ └── zengarden │ ├── DspGenWave.java │ ├── DspObjectTest.java │ ├── PdObjectTest.java │ ├── ZGInputStream.java │ └── ZGSystemTest.java ├── multiple-receiver-test.golden.txt └── multiple-receiver-test.pd /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /OBJECTS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/OBJECTS.txt -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/README.md -------------------------------------------------------------------------------- /Xcode/ZenGarden.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/Xcode/ZenGarden.1 -------------------------------------------------------------------------------- /Xcode/ZenGarden.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/Xcode/ZenGarden.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/examples/README -------------------------------------------------------------------------------- /examples/wobbly.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/examples/wobbly.pd -------------------------------------------------------------------------------- /jni: -------------------------------------------------------------------------------- 1 | src -------------------------------------------------------------------------------- /junit-4.8.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/junit-4.8.2.jar -------------------------------------------------------------------------------- /libs/Darwin-i386/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/Darwin-i386/README -------------------------------------------------------------------------------- /libs/Darwin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/Darwin/README -------------------------------------------------------------------------------- /libs/Darwin/libsndfile_x86.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/Darwin/libsndfile_x86.a -------------------------------------------------------------------------------- /libs/Linux-i386/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/Linux-i386/README -------------------------------------------------------------------------------- /libs/Linux-i686/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/Linux-i686/README -------------------------------------------------------------------------------- /libs/iOS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/iOS/README -------------------------------------------------------------------------------- /libs/iOS/libsndfile_iOS.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/iOS/libsndfile_iOS.a -------------------------------------------------------------------------------- /libs/nds/libsndfile.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/nds/libsndfile.a -------------------------------------------------------------------------------- /libs/nds/libzengarden.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/libs/nds/libzengarden.a -------------------------------------------------------------------------------- /pd-patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/README -------------------------------------------------------------------------------- /pd-patches/mic_am220.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/mic_am220.pd -------------------------------------------------------------------------------- /pd-patches/simple_osc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/simple_osc.pd -------------------------------------------------------------------------------- /pd-patches/unittests/MessagePrint.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/MessagePrint.pd -------------------------------------------------------------------------------- /pd-patches/unittests/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pd-patches/unittests/SendReceive.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/SendReceive.pd -------------------------------------------------------------------------------- /pd-patches/unittests/audio.one-second.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/audio.one-second.pd -------------------------------------------------------------------------------- /pd-patches/unittests/golden/MessagePrint.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/golden/MessagePrint.txt -------------------------------------------------------------------------------- /pd-patches/unittests/golden/SendReceive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/golden/SendReceive.txt -------------------------------------------------------------------------------- /pd-patches/unittests/golden/mod_rem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/golden/mod_rem.txt -------------------------------------------------------------------------------- /pd-patches/unittests/mod_rem.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/mod_rem.pd -------------------------------------------------------------------------------- /pd-patches/unittests/pack.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/pack.pd -------------------------------------------------------------------------------- /pd-patches/unittests/unpack.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pd-patches/unittests/unpack.pd -------------------------------------------------------------------------------- /pyExampleGarden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/pyExampleGarden.py -------------------------------------------------------------------------------- /runme-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/runme-java.sh -------------------------------------------------------------------------------- /runme-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/runme-python.sh -------------------------------------------------------------------------------- /runme-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/runme-test.sh -------------------------------------------------------------------------------- /scripts/object-coverage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/scripts/object-coverage -------------------------------------------------------------------------------- /src/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Android.mk -------------------------------------------------------------------------------- /src/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Application.mk -------------------------------------------------------------------------------- /src/ArrayArithmetic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ArrayArithmetic.h -------------------------------------------------------------------------------- /src/BufferPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/BufferPool.cpp -------------------------------------------------------------------------------- /src/BufferPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/BufferPool.h -------------------------------------------------------------------------------- /src/ConnectionType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ConnectionType.h -------------------------------------------------------------------------------- /src/DeclareList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DeclareList.cpp -------------------------------------------------------------------------------- /src/DeclareList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DeclareList.h -------------------------------------------------------------------------------- /src/DelayReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DelayReceiver.cpp -------------------------------------------------------------------------------- /src/DelayReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DelayReceiver.h -------------------------------------------------------------------------------- /src/DspAdc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspAdc.cpp -------------------------------------------------------------------------------- /src/DspAdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspAdc.h -------------------------------------------------------------------------------- /src/DspAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspAdd.cpp -------------------------------------------------------------------------------- /src/DspAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspAdd.h -------------------------------------------------------------------------------- /src/DspBandpassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspBandpassFilter.cpp -------------------------------------------------------------------------------- /src/DspBandpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspBandpassFilter.h -------------------------------------------------------------------------------- /src/DspBang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspBang.cpp -------------------------------------------------------------------------------- /src/DspBang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspBang.h -------------------------------------------------------------------------------- /src/DspCatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspCatch.cpp -------------------------------------------------------------------------------- /src/DspCatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspCatch.h -------------------------------------------------------------------------------- /src/DspClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspClip.cpp -------------------------------------------------------------------------------- /src/DspClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspClip.h -------------------------------------------------------------------------------- /src/DspCosine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspCosine.cpp -------------------------------------------------------------------------------- /src/DspCosine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspCosine.h -------------------------------------------------------------------------------- /src/DspDac.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDac.cpp -------------------------------------------------------------------------------- /src/DspDac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDac.h -------------------------------------------------------------------------------- /src/DspDelayRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDelayRead.cpp -------------------------------------------------------------------------------- /src/DspDelayRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDelayRead.h -------------------------------------------------------------------------------- /src/DspDelayWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDelayWrite.cpp -------------------------------------------------------------------------------- /src/DspDelayWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDelayWrite.h -------------------------------------------------------------------------------- /src/DspDivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDivide.cpp -------------------------------------------------------------------------------- /src/DspDivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspDivide.h -------------------------------------------------------------------------------- /src/DspEnvelope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspEnvelope.cpp -------------------------------------------------------------------------------- /src/DspEnvelope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspEnvelope.h -------------------------------------------------------------------------------- /src/DspFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspFilter.cpp -------------------------------------------------------------------------------- /src/DspFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspFilter.h -------------------------------------------------------------------------------- /src/DspHighpassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspHighpassFilter.cpp -------------------------------------------------------------------------------- /src/DspHighpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspHighpassFilter.h -------------------------------------------------------------------------------- /src/DspImplicitAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspImplicitAdd.cpp -------------------------------------------------------------------------------- /src/DspImplicitAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspImplicitAdd.h -------------------------------------------------------------------------------- /src/DspInlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspInlet.cpp -------------------------------------------------------------------------------- /src/DspInlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspInlet.h -------------------------------------------------------------------------------- /src/DspLetIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLetIndex.h -------------------------------------------------------------------------------- /src/DspLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLine.cpp -------------------------------------------------------------------------------- /src/DspLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLine.h -------------------------------------------------------------------------------- /src/DspLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLog.cpp -------------------------------------------------------------------------------- /src/DspLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLog.h -------------------------------------------------------------------------------- /src/DspLowpassFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLowpassFilter.cpp -------------------------------------------------------------------------------- /src/DspLowpassFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspLowpassFilter.h -------------------------------------------------------------------------------- /src/DspMinimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspMinimum.cpp -------------------------------------------------------------------------------- /src/DspMinimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspMinimum.h -------------------------------------------------------------------------------- /src/DspMultiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspMultiply.cpp -------------------------------------------------------------------------------- /src/DspMultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspMultiply.h -------------------------------------------------------------------------------- /src/DspNoise.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspNoise.cpp -------------------------------------------------------------------------------- /src/DspNoise.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspNoise.h -------------------------------------------------------------------------------- /src/DspObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspObject.cpp -------------------------------------------------------------------------------- /src/DspObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspObject.h -------------------------------------------------------------------------------- /src/DspOsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspOsc.cpp -------------------------------------------------------------------------------- /src/DspOsc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspOsc.h -------------------------------------------------------------------------------- /src/DspOutlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspOutlet.cpp -------------------------------------------------------------------------------- /src/DspOutlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspOutlet.h -------------------------------------------------------------------------------- /src/DspPhasor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspPhasor.cpp -------------------------------------------------------------------------------- /src/DspPhasor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspPhasor.h -------------------------------------------------------------------------------- /src/DspPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspPrint.cpp -------------------------------------------------------------------------------- /src/DspPrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspPrint.h -------------------------------------------------------------------------------- /src/DspReceive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspReceive.cpp -------------------------------------------------------------------------------- /src/DspReceive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspReceive.h -------------------------------------------------------------------------------- /src/DspReciprocalSqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspReciprocalSqrt.cpp -------------------------------------------------------------------------------- /src/DspReciprocalSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspReciprocalSqrt.h -------------------------------------------------------------------------------- /src/DspRfft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspRfft.cpp -------------------------------------------------------------------------------- /src/DspRfft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspRfft.h -------------------------------------------------------------------------------- /src/DspRifft.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspRifft.cpp -------------------------------------------------------------------------------- /src/DspRifft.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspRifft.h -------------------------------------------------------------------------------- /src/DspSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSend.cpp -------------------------------------------------------------------------------- /src/DspSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSend.h -------------------------------------------------------------------------------- /src/DspSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSignal.cpp -------------------------------------------------------------------------------- /src/DspSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSignal.h -------------------------------------------------------------------------------- /src/DspSnapshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSnapshot.cpp -------------------------------------------------------------------------------- /src/DspSnapshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSnapshot.h -------------------------------------------------------------------------------- /src/DspSqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSqrt.cpp -------------------------------------------------------------------------------- /src/DspSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSqrt.h -------------------------------------------------------------------------------- /src/DspSubtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSubtract.cpp -------------------------------------------------------------------------------- /src/DspSubtract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspSubtract.h -------------------------------------------------------------------------------- /src/DspTablePlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTablePlay.cpp -------------------------------------------------------------------------------- /src/DspTablePlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTablePlay.h -------------------------------------------------------------------------------- /src/DspTableRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTableRead.cpp -------------------------------------------------------------------------------- /src/DspTableRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTableRead.h -------------------------------------------------------------------------------- /src/DspTableRead4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTableRead4.cpp -------------------------------------------------------------------------------- /src/DspTableRead4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspTableRead4.h -------------------------------------------------------------------------------- /src/DspThrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspThrow.cpp -------------------------------------------------------------------------------- /src/DspThrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspThrow.h -------------------------------------------------------------------------------- /src/DspVCF.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVCF.cpp -------------------------------------------------------------------------------- /src/DspVCF.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVCF.h -------------------------------------------------------------------------------- /src/DspVariableDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVariableDelay.cpp -------------------------------------------------------------------------------- /src/DspVariableDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVariableDelay.h -------------------------------------------------------------------------------- /src/DspVariableLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVariableLine.cpp -------------------------------------------------------------------------------- /src/DspVariableLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspVariableLine.h -------------------------------------------------------------------------------- /src/DspWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspWrap.cpp -------------------------------------------------------------------------------- /src/DspWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/DspWrap.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Makefile.OS.Darwin-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile.OS.Darwin-i386 -------------------------------------------------------------------------------- /src/Makefile.OS.Darwin-x86_64: -------------------------------------------------------------------------------- 1 | Makefile.OS.Darwin-i386 -------------------------------------------------------------------------------- /src/Makefile.OS.Linux-i386: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile.OS.Linux-i386 -------------------------------------------------------------------------------- /src/Makefile.OS.Linux-i686: -------------------------------------------------------------------------------- 1 | Makefile.OS.Linux-i386 -------------------------------------------------------------------------------- /src/Makefile.OS.nds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile.OS.nds -------------------------------------------------------------------------------- /src/Makefile.jni.sourcefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile.jni.sourcefiles -------------------------------------------------------------------------------- /src/Makefile.sourcefiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/Makefile.sourcefiles -------------------------------------------------------------------------------- /src/MersenneTwister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MersenneTwister.h -------------------------------------------------------------------------------- /src/MessageAbsoluteValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageAbsoluteValue.cpp -------------------------------------------------------------------------------- /src/MessageAbsoluteValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageAbsoluteValue.h -------------------------------------------------------------------------------- /src/MessageAdd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageAdd.cpp -------------------------------------------------------------------------------- /src/MessageAdd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageAdd.h -------------------------------------------------------------------------------- /src/MessageArcTangent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageArcTangent.cpp -------------------------------------------------------------------------------- /src/MessageArcTangent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageArcTangent.h -------------------------------------------------------------------------------- /src/MessageArcTangent2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageArcTangent2.cpp -------------------------------------------------------------------------------- /src/MessageArcTangent2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageArcTangent2.h -------------------------------------------------------------------------------- /src/MessageBang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageBang.cpp -------------------------------------------------------------------------------- /src/MessageBang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageBang.h -------------------------------------------------------------------------------- /src/MessageChange.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageChange.cpp -------------------------------------------------------------------------------- /src/MessageChange.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageChange.h -------------------------------------------------------------------------------- /src/MessageClip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageClip.cpp -------------------------------------------------------------------------------- /src/MessageClip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageClip.h -------------------------------------------------------------------------------- /src/MessageCosine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageCosine.cpp -------------------------------------------------------------------------------- /src/MessageCosine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageCosine.h -------------------------------------------------------------------------------- /src/MessageCputime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageCputime.cpp -------------------------------------------------------------------------------- /src/MessageCputime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageCputime.h -------------------------------------------------------------------------------- /src/MessageDbToPow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDbToPow.cpp -------------------------------------------------------------------------------- /src/MessageDbToPow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDbToPow.h -------------------------------------------------------------------------------- /src/MessageDbToRms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDbToRms.cpp -------------------------------------------------------------------------------- /src/MessageDbToRms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDbToRms.h -------------------------------------------------------------------------------- /src/MessageDeclare.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDeclare.cpp -------------------------------------------------------------------------------- /src/MessageDeclare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDeclare.h -------------------------------------------------------------------------------- /src/MessageDelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDelay.cpp -------------------------------------------------------------------------------- /src/MessageDelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDelay.h -------------------------------------------------------------------------------- /src/MessageDiv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDiv.cpp -------------------------------------------------------------------------------- /src/MessageDiv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDiv.h -------------------------------------------------------------------------------- /src/MessageDivide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDivide.cpp -------------------------------------------------------------------------------- /src/MessageDivide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageDivide.h -------------------------------------------------------------------------------- /src/MessageElement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageElement.cpp -------------------------------------------------------------------------------- /src/MessageElement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageElement.h -------------------------------------------------------------------------------- /src/MessageElementType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageElementType.h -------------------------------------------------------------------------------- /src/MessageEqualsEquals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageEqualsEquals.cpp -------------------------------------------------------------------------------- /src/MessageEqualsEquals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageEqualsEquals.h -------------------------------------------------------------------------------- /src/MessageExp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageExp.cpp -------------------------------------------------------------------------------- /src/MessageExp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageExp.h -------------------------------------------------------------------------------- /src/MessageFloat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageFloat.cpp -------------------------------------------------------------------------------- /src/MessageFloat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageFloat.h -------------------------------------------------------------------------------- /src/MessageFrequencyToMidi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageFrequencyToMidi.cpp -------------------------------------------------------------------------------- /src/MessageFrequencyToMidi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageFrequencyToMidi.h -------------------------------------------------------------------------------- /src/MessageGreaterThan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageGreaterThan.cpp -------------------------------------------------------------------------------- /src/MessageGreaterThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageGreaterThan.h -------------------------------------------------------------------------------- /src/MessageGreaterThanOrEqualTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageGreaterThanOrEqualTo.cpp -------------------------------------------------------------------------------- /src/MessageGreaterThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageGreaterThanOrEqualTo.h -------------------------------------------------------------------------------- /src/MessageInlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageInlet.cpp -------------------------------------------------------------------------------- /src/MessageInlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageInlet.h -------------------------------------------------------------------------------- /src/MessageInteger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageInteger.cpp -------------------------------------------------------------------------------- /src/MessageInteger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageInteger.h -------------------------------------------------------------------------------- /src/MessageLessThan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLessThan.cpp -------------------------------------------------------------------------------- /src/MessageLessThan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLessThan.h -------------------------------------------------------------------------------- /src/MessageLessThanOrEqualTo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLessThanOrEqualTo.cpp -------------------------------------------------------------------------------- /src/MessageLessThanOrEqualTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLessThanOrEqualTo.h -------------------------------------------------------------------------------- /src/MessageLetIndex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLetIndex.h -------------------------------------------------------------------------------- /src/MessageLetPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLetPair.h -------------------------------------------------------------------------------- /src/MessageLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLine.cpp -------------------------------------------------------------------------------- /src/MessageLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLine.h -------------------------------------------------------------------------------- /src/MessageListAppend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListAppend.cpp -------------------------------------------------------------------------------- /src/MessageListAppend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListAppend.h -------------------------------------------------------------------------------- /src/MessageListLength.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListLength.cpp -------------------------------------------------------------------------------- /src/MessageListLength.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListLength.h -------------------------------------------------------------------------------- /src/MessageListPrepend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListPrepend.cpp -------------------------------------------------------------------------------- /src/MessageListPrepend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListPrepend.h -------------------------------------------------------------------------------- /src/MessageListSplit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListSplit.cpp -------------------------------------------------------------------------------- /src/MessageListSplit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListSplit.h -------------------------------------------------------------------------------- /src/MessageListTrim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListTrim.cpp -------------------------------------------------------------------------------- /src/MessageListTrim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageListTrim.h -------------------------------------------------------------------------------- /src/MessageLoadbang.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLoadbang.cpp -------------------------------------------------------------------------------- /src/MessageLoadbang.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLoadbang.h -------------------------------------------------------------------------------- /src/MessageLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLog.cpp -------------------------------------------------------------------------------- /src/MessageLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLog.h -------------------------------------------------------------------------------- /src/MessageLogicalAnd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLogicalAnd.cpp -------------------------------------------------------------------------------- /src/MessageLogicalAnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLogicalAnd.h -------------------------------------------------------------------------------- /src/MessageLogicalOr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLogicalOr.cpp -------------------------------------------------------------------------------- /src/MessageLogicalOr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageLogicalOr.h -------------------------------------------------------------------------------- /src/MessageMakefilename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMakefilename.cpp -------------------------------------------------------------------------------- /src/MessageMakefilename.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMakefilename.h -------------------------------------------------------------------------------- /src/MessageMaximum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMaximum.cpp -------------------------------------------------------------------------------- /src/MessageMaximum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMaximum.h -------------------------------------------------------------------------------- /src/MessageMessageBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMessageBox.cpp -------------------------------------------------------------------------------- /src/MessageMessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMessageBox.h -------------------------------------------------------------------------------- /src/MessageMetro.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMetro.cpp -------------------------------------------------------------------------------- /src/MessageMetro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMetro.h -------------------------------------------------------------------------------- /src/MessageMidiToFrequency.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMidiToFrequency.cpp -------------------------------------------------------------------------------- /src/MessageMidiToFrequency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMidiToFrequency.h -------------------------------------------------------------------------------- /src/MessageMinimum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMinimum.cpp -------------------------------------------------------------------------------- /src/MessageMinimum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMinimum.h -------------------------------------------------------------------------------- /src/MessageModulus.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageModulus.cpp -------------------------------------------------------------------------------- /src/MessageModulus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageModulus.h -------------------------------------------------------------------------------- /src/MessageMoses.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMoses.cpp -------------------------------------------------------------------------------- /src/MessageMoses.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMoses.h -------------------------------------------------------------------------------- /src/MessageMultiply.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMultiply.cpp -------------------------------------------------------------------------------- /src/MessageMultiply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageMultiply.h -------------------------------------------------------------------------------- /src/MessageNamedDestination.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageNamedDestination.h -------------------------------------------------------------------------------- /src/MessageNotEquals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageNotEquals.cpp -------------------------------------------------------------------------------- /src/MessageNotEquals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageNotEquals.h -------------------------------------------------------------------------------- /src/MessageNotein.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageNotein.cpp -------------------------------------------------------------------------------- /src/MessageNotein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageNotein.h -------------------------------------------------------------------------------- /src/MessageObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageObject.cpp -------------------------------------------------------------------------------- /src/MessageObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageObject.h -------------------------------------------------------------------------------- /src/MessageOpenPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageOpenPanel.cpp -------------------------------------------------------------------------------- /src/MessageOpenPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageOpenPanel.h -------------------------------------------------------------------------------- /src/MessageOutlet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageOutlet.cpp -------------------------------------------------------------------------------- /src/MessageOutlet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageOutlet.h -------------------------------------------------------------------------------- /src/MessagePack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePack.cpp -------------------------------------------------------------------------------- /src/MessagePack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePack.h -------------------------------------------------------------------------------- /src/MessagePipe.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePipe.cpp -------------------------------------------------------------------------------- /src/MessagePipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePipe.h -------------------------------------------------------------------------------- /src/MessagePow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePow.cpp -------------------------------------------------------------------------------- /src/MessagePow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePow.h -------------------------------------------------------------------------------- /src/MessagePowToDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePowToDb.cpp -------------------------------------------------------------------------------- /src/MessagePowToDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePowToDb.h -------------------------------------------------------------------------------- /src/MessagePrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePrint.cpp -------------------------------------------------------------------------------- /src/MessagePrint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessagePrint.h -------------------------------------------------------------------------------- /src/MessageRandom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRandom.cpp -------------------------------------------------------------------------------- /src/MessageRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRandom.h -------------------------------------------------------------------------------- /src/MessageReceive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageReceive.cpp -------------------------------------------------------------------------------- /src/MessageReceive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageReceive.h -------------------------------------------------------------------------------- /src/MessageRemainder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRemainder.cpp -------------------------------------------------------------------------------- /src/MessageRemainder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRemainder.h -------------------------------------------------------------------------------- /src/MessageRmsToDb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRmsToDb.cpp -------------------------------------------------------------------------------- /src/MessageRmsToDb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRmsToDb.h -------------------------------------------------------------------------------- /src/MessageRoute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRoute.cpp -------------------------------------------------------------------------------- /src/MessageRoute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageRoute.h -------------------------------------------------------------------------------- /src/MessageSamplerate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSamplerate.cpp -------------------------------------------------------------------------------- /src/MessageSamplerate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSamplerate.h -------------------------------------------------------------------------------- /src/MessageSelect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSelect.cpp -------------------------------------------------------------------------------- /src/MessageSelect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSelect.h -------------------------------------------------------------------------------- /src/MessageSend.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSend.cpp -------------------------------------------------------------------------------- /src/MessageSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSend.h -------------------------------------------------------------------------------- /src/MessageSendController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSendController.cpp -------------------------------------------------------------------------------- /src/MessageSendController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSendController.h -------------------------------------------------------------------------------- /src/MessageSine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSine.cpp -------------------------------------------------------------------------------- /src/MessageSine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSine.h -------------------------------------------------------------------------------- /src/MessageSoundfiler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSoundfiler.cpp -------------------------------------------------------------------------------- /src/MessageSoundfiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSoundfiler.h -------------------------------------------------------------------------------- /src/MessageSpigot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSpigot.cpp -------------------------------------------------------------------------------- /src/MessageSpigot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSpigot.h -------------------------------------------------------------------------------- /src/MessageSqrt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSqrt.cpp -------------------------------------------------------------------------------- /src/MessageSqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSqrt.h -------------------------------------------------------------------------------- /src/MessageStripNote.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageStripNote.cpp -------------------------------------------------------------------------------- /src/MessageStripNote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageStripNote.h -------------------------------------------------------------------------------- /src/MessageSubtract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSubtract.cpp -------------------------------------------------------------------------------- /src/MessageSubtract.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSubtract.h -------------------------------------------------------------------------------- /src/MessageSwap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSwap.cpp -------------------------------------------------------------------------------- /src/MessageSwap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSwap.h -------------------------------------------------------------------------------- /src/MessageSwitch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSwitch.cpp -------------------------------------------------------------------------------- /src/MessageSwitch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSwitch.h -------------------------------------------------------------------------------- /src/MessageSymbol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSymbol.cpp -------------------------------------------------------------------------------- /src/MessageSymbol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageSymbol.h -------------------------------------------------------------------------------- /src/MessageTable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTable.cpp -------------------------------------------------------------------------------- /src/MessageTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTable.h -------------------------------------------------------------------------------- /src/MessageTableRead.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTableRead.cpp -------------------------------------------------------------------------------- /src/MessageTableRead.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTableRead.h -------------------------------------------------------------------------------- /src/MessageTableWrite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTableWrite.cpp -------------------------------------------------------------------------------- /src/MessageTableWrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTableWrite.h -------------------------------------------------------------------------------- /src/MessageTangent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTangent.cpp -------------------------------------------------------------------------------- /src/MessageTangent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTangent.h -------------------------------------------------------------------------------- /src/MessageText.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageText.cpp -------------------------------------------------------------------------------- /src/MessageText.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageText.h -------------------------------------------------------------------------------- /src/MessageTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTimer.cpp -------------------------------------------------------------------------------- /src/MessageTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTimer.h -------------------------------------------------------------------------------- /src/MessageToggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageToggle.cpp -------------------------------------------------------------------------------- /src/MessageToggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageToggle.h -------------------------------------------------------------------------------- /src/MessageTrigger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTrigger.cpp -------------------------------------------------------------------------------- /src/MessageTrigger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageTrigger.h -------------------------------------------------------------------------------- /src/MessageUnpack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageUnpack.cpp -------------------------------------------------------------------------------- /src/MessageUnpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageUnpack.h -------------------------------------------------------------------------------- /src/MessageUntil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageUntil.cpp -------------------------------------------------------------------------------- /src/MessageUntil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageUntil.h -------------------------------------------------------------------------------- /src/MessageValue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageValue.cpp -------------------------------------------------------------------------------- /src/MessageValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageValue.h -------------------------------------------------------------------------------- /src/MessageWrap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageWrap.cpp -------------------------------------------------------------------------------- /src/MessageWrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/MessageWrap.h -------------------------------------------------------------------------------- /src/ObjectFactoryMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ObjectFactoryMap.cpp -------------------------------------------------------------------------------- /src/ObjectFactoryMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ObjectFactoryMap.h -------------------------------------------------------------------------------- /src/ObjectLetPair.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ObjectLetPair.h -------------------------------------------------------------------------------- /src/ObjectType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ObjectType.h -------------------------------------------------------------------------------- /src/OrderedMessageQueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/OrderedMessageQueue.cpp -------------------------------------------------------------------------------- /src/OrderedMessageQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/OrderedMessageQueue.h -------------------------------------------------------------------------------- /src/PdAbstractionDataBase.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdAbstractionDataBase.cpp -------------------------------------------------------------------------------- /src/PdAbstractionDataBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdAbstractionDataBase.h -------------------------------------------------------------------------------- /src/PdContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdContext.cpp -------------------------------------------------------------------------------- /src/PdContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdContext.h -------------------------------------------------------------------------------- /src/PdFileParser.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdFileParser.cpp -------------------------------------------------------------------------------- /src/PdFileParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdFileParser.h -------------------------------------------------------------------------------- /src/PdGraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdGraph.cpp -------------------------------------------------------------------------------- /src/PdGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdGraph.h -------------------------------------------------------------------------------- /src/PdMessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdMessage.cpp -------------------------------------------------------------------------------- /src/PdMessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/PdMessage.h -------------------------------------------------------------------------------- /src/RemoteMessageReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/RemoteMessageReceiver.cpp -------------------------------------------------------------------------------- /src/RemoteMessageReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/RemoteMessageReceiver.h -------------------------------------------------------------------------------- /src/StaticUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/StaticUtils.cpp -------------------------------------------------------------------------------- /src/StaticUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/StaticUtils.h -------------------------------------------------------------------------------- /src/TableReceiverInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/TableReceiverInterface.h -------------------------------------------------------------------------------- /src/ZGCallbackFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZGCallbackFunction.h -------------------------------------------------------------------------------- /src/ZenGarden.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZenGarden.cpp -------------------------------------------------------------------------------- /src/ZenGarden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZenGarden.h -------------------------------------------------------------------------------- /src/ZenGardenDS/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZenGardenDS/Makefile -------------------------------------------------------------------------------- /src/ZenGardenDS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZenGardenDS/README -------------------------------------------------------------------------------- /src/ZenGardenDS/source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/ZenGardenDS/source/main.c -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/Android.mk -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/Application.mk -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ConnectionPair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ConnectionPair.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ExampleGarden.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ExampleGarden.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/Message.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/Message.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/NativeLoadException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/NativeLoadException.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ZGContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ZGContext.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ZGGraph.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ZGGraph.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ZGObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ZGObject.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ZenGardenAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ZenGardenAdapter.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/ZenGardenListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/ZenGardenListener.java -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/manifest -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/me_rjdj_zengarden_ZGContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/me_rjdj_zengarden_ZGContext.h -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/me_rjdj_zengarden_ZGGraph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/me_rjdj_zengarden_ZGGraph.h -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/me_rjdj_zengarden_ZGObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/me_rjdj_zengarden_ZGObject.h -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/me_rjdj_zengarden_ZenGarden.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/me_rjdj_zengarden_ZenGarden.h -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/zgcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/zgcontext.cpp -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/zggraph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/zggraph.cpp -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/zgmessage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/zgmessage.cpp -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/zgmessage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/zgmessage.h -------------------------------------------------------------------------------- /src/me/rjdj/zengarden/zgobject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/me/rjdj/zengarden/zgobject.cpp -------------------------------------------------------------------------------- /src/platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/platform -------------------------------------------------------------------------------- /src/pyZenGarden.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/src/pyZenGarden.py -------------------------------------------------------------------------------- /test/MessageAbsoluteValue.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageAbsoluteValue.golden.txt -------------------------------------------------------------------------------- /test/MessageAbsoluteValue.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageAbsoluteValue.pd -------------------------------------------------------------------------------- /test/MessageAdd.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageAdd.golden.txt -------------------------------------------------------------------------------- /test/MessageAdd.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageAdd.pd -------------------------------------------------------------------------------- /test/MessageArcTangent.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageArcTangent.golden.txt -------------------------------------------------------------------------------- /test/MessageArcTangent.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageArcTangent.pd -------------------------------------------------------------------------------- /test/MessageArcTangent2.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageArcTangent2.golden.txt -------------------------------------------------------------------------------- /test/MessageArcTangent2.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageArcTangent2.pd -------------------------------------------------------------------------------- /test/MessageBang.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageBang.golden.txt -------------------------------------------------------------------------------- /test/MessageBang.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageBang.pd -------------------------------------------------------------------------------- /test/MessageChange.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageChange.golden.txt -------------------------------------------------------------------------------- /test/MessageChange.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageChange.pd -------------------------------------------------------------------------------- /test/MessageClip.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageClip.golden.txt -------------------------------------------------------------------------------- /test/MessageClip.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageClip.pd -------------------------------------------------------------------------------- /test/MessageCosine.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageCosine.golden.txt -------------------------------------------------------------------------------- /test/MessageCosine.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageCosine.pd -------------------------------------------------------------------------------- /test/MessageDbToPow.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDbToPow.golden.txt -------------------------------------------------------------------------------- /test/MessageDbToPow.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDbToPow.pd -------------------------------------------------------------------------------- /test/MessageDbToRms.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDbToRms.golden.txt -------------------------------------------------------------------------------- /test/MessageDbToRms.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDbToRms.pd -------------------------------------------------------------------------------- /test/MessageDelay.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDelay.golden.txt -------------------------------------------------------------------------------- /test/MessageDelay.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDelay.pd -------------------------------------------------------------------------------- /test/MessageDiv.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDiv.golden.txt -------------------------------------------------------------------------------- /test/MessageDiv.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDiv.pd -------------------------------------------------------------------------------- /test/MessageDivide.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDivide.golden.txt -------------------------------------------------------------------------------- /test/MessageDivide.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageDivide.pd -------------------------------------------------------------------------------- /test/MessageEqualsEquals.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageEqualsEquals.golden.txt -------------------------------------------------------------------------------- /test/MessageEqualsEquals.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageEqualsEquals.pd -------------------------------------------------------------------------------- /test/MessageExp.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageExp.golden.txt -------------------------------------------------------------------------------- /test/MessageExp.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageExp.pd -------------------------------------------------------------------------------- /test/MessageFloat.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageFloat.golden.txt -------------------------------------------------------------------------------- /test/MessageFloat.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageFloat.pd -------------------------------------------------------------------------------- /test/MessageFrequencyToMidi.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageFrequencyToMidi.golden.txt -------------------------------------------------------------------------------- /test/MessageFrequencyToMidi.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageFrequencyToMidi.pd -------------------------------------------------------------------------------- /test/MessageGreaterThan.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageGreaterThan.golden.txt -------------------------------------------------------------------------------- /test/MessageGreaterThan.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageGreaterThan.pd -------------------------------------------------------------------------------- /test/MessageGreaterThanOrEqualTo.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageGreaterThanOrEqualTo.golden.txt -------------------------------------------------------------------------------- /test/MessageGreaterThanOrEqualTo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageGreaterThanOrEqualTo.pd -------------------------------------------------------------------------------- /test/MessageInletOutlet.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageInletOutlet.golden.txt -------------------------------------------------------------------------------- /test/MessageInletOutlet.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageInletOutlet.pd -------------------------------------------------------------------------------- /test/MessageInteger.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageInteger.golden.txt -------------------------------------------------------------------------------- /test/MessageInteger.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageInteger.pd -------------------------------------------------------------------------------- /test/MessageLessThan.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLessThan.golden.txt -------------------------------------------------------------------------------- /test/MessageLessThan.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLessThan.pd -------------------------------------------------------------------------------- /test/MessageLessThanOrEqualTo.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLessThanOrEqualTo.golden.txt -------------------------------------------------------------------------------- /test/MessageLessThanOrEqualTo.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLessThanOrEqualTo.pd -------------------------------------------------------------------------------- /test/MessageLine.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLine.golden.txt -------------------------------------------------------------------------------- /test/MessageLine.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLine.pd -------------------------------------------------------------------------------- /test/MessageListAppend.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageListAppend.golden.txt -------------------------------------------------------------------------------- /test/MessageListAppend.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageListAppend.pd -------------------------------------------------------------------------------- /test/MessageListLength.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageListLength.golden.txt -------------------------------------------------------------------------------- /test/MessageListLength.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageListLength.pd -------------------------------------------------------------------------------- /test/MessageLoadbang.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLoadbang.golden.txt -------------------------------------------------------------------------------- /test/MessageLoadbang.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLoadbang.pd -------------------------------------------------------------------------------- /test/MessageLog.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLog.golden.txt -------------------------------------------------------------------------------- /test/MessageLog.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLog.pd -------------------------------------------------------------------------------- /test/MessageLogicalAnd.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLogicalAnd.golden.txt -------------------------------------------------------------------------------- /test/MessageLogicalAnd.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLogicalAnd.pd -------------------------------------------------------------------------------- /test/MessageLogicalOr.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLogicalOr.golden.txt -------------------------------------------------------------------------------- /test/MessageLogicalOr.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageLogicalOr.pd -------------------------------------------------------------------------------- /test/MessageMakefilename.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMakefilename.golden.txt -------------------------------------------------------------------------------- /test/MessageMakefilename.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMakefilename.pd -------------------------------------------------------------------------------- /test/MessageMaximum.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMaximum.golden.txt -------------------------------------------------------------------------------- /test/MessageMaximum.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMaximum.pd -------------------------------------------------------------------------------- /test/MessageMessageBox.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMessageBox.golden.txt -------------------------------------------------------------------------------- /test/MessageMessageBox.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMessageBox.pd -------------------------------------------------------------------------------- /test/MessageMetro.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMetro.golden.txt -------------------------------------------------------------------------------- /test/MessageMetro.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMetro.pd -------------------------------------------------------------------------------- /test/MessageMidiToFrequency.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMidiToFrequency.golden.txt -------------------------------------------------------------------------------- /test/MessageMidiToFrequency.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMidiToFrequency.pd -------------------------------------------------------------------------------- /test/MessageMinimum.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMinimum.golden.txt -------------------------------------------------------------------------------- /test/MessageMinimum.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMinimum.pd -------------------------------------------------------------------------------- /test/MessageModulus.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageModulus.golden.txt -------------------------------------------------------------------------------- /test/MessageModulus.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageModulus.pd -------------------------------------------------------------------------------- /test/MessageMoses.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMoses.golden.txt -------------------------------------------------------------------------------- /test/MessageMoses.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMoses.pd -------------------------------------------------------------------------------- /test/MessageMultiply.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMultiply.golden.txt -------------------------------------------------------------------------------- /test/MessageMultiply.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageMultiply.pd -------------------------------------------------------------------------------- /test/MessageNotEquals.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageNotEquals.golden.txt -------------------------------------------------------------------------------- /test/MessageNotEquals.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageNotEquals.pd -------------------------------------------------------------------------------- /test/MessagePack.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePack.golden.txt -------------------------------------------------------------------------------- /test/MessagePack.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePack.pd -------------------------------------------------------------------------------- /test/MessagePipe.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePipe.golden.txt -------------------------------------------------------------------------------- /test/MessagePipe.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePipe.pd -------------------------------------------------------------------------------- /test/MessagePow.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePow.golden.txt -------------------------------------------------------------------------------- /test/MessagePow.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePow.pd -------------------------------------------------------------------------------- /test/MessagePowToDb.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePowToDb.golden.txt -------------------------------------------------------------------------------- /test/MessagePowToDb.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePowToDb.pd -------------------------------------------------------------------------------- /test/MessagePrint.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePrint.golden.txt -------------------------------------------------------------------------------- /test/MessagePrint.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessagePrint.pd -------------------------------------------------------------------------------- /test/MessageRandom.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRandom.golden.txt -------------------------------------------------------------------------------- /test/MessageRandom.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRandom.pd -------------------------------------------------------------------------------- /test/MessageReceive.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageReceive.golden.txt -------------------------------------------------------------------------------- /test/MessageReceive.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageReceive.pd -------------------------------------------------------------------------------- /test/MessageRemainder.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRemainder.golden.txt -------------------------------------------------------------------------------- /test/MessageRemainder.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRemainder.pd -------------------------------------------------------------------------------- /test/MessageRmsToDb.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRmsToDb.golden.txt -------------------------------------------------------------------------------- /test/MessageRmsToDb.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRmsToDb.pd -------------------------------------------------------------------------------- /test/MessageRoute.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRoute.golden.txt -------------------------------------------------------------------------------- /test/MessageRoute.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageRoute.pd -------------------------------------------------------------------------------- /test/MessageSelect.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSelect.golden.txt -------------------------------------------------------------------------------- /test/MessageSelect.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSelect.pd -------------------------------------------------------------------------------- /test/MessageSend.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSend.golden.txt -------------------------------------------------------------------------------- /test/MessageSend.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSend.pd -------------------------------------------------------------------------------- /test/MessageSend_variable.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSend_variable.golden.txt -------------------------------------------------------------------------------- /test/MessageSend_variable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSend_variable.pd -------------------------------------------------------------------------------- /test/MessageSine.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSine.golden.txt -------------------------------------------------------------------------------- /test/MessageSine.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSine.pd -------------------------------------------------------------------------------- /test/MessageSpigot.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSpigot.golden.txt -------------------------------------------------------------------------------- /test/MessageSpigot.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSpigot.pd -------------------------------------------------------------------------------- /test/MessageSqrt.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSqrt.golden.txt -------------------------------------------------------------------------------- /test/MessageSqrt.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSqrt.pd -------------------------------------------------------------------------------- /test/MessageSubtract.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSubtract.golden.txt -------------------------------------------------------------------------------- /test/MessageSubtract.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSubtract.pd -------------------------------------------------------------------------------- /test/MessageSwap.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSwap.golden.txt -------------------------------------------------------------------------------- /test/MessageSwap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSwap.pd -------------------------------------------------------------------------------- /test/MessageSymbol.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSymbol.golden.txt -------------------------------------------------------------------------------- /test/MessageSymbol.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageSymbol.pd -------------------------------------------------------------------------------- /test/MessageTable.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTable.golden.txt -------------------------------------------------------------------------------- /test/MessageTable.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTable.pd -------------------------------------------------------------------------------- /test/MessageTangent.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTangent.golden.txt -------------------------------------------------------------------------------- /test/MessageTangent.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTangent.pd -------------------------------------------------------------------------------- /test/MessageTimer.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTimer.golden.txt -------------------------------------------------------------------------------- /test/MessageTimer.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTimer.pd -------------------------------------------------------------------------------- /test/MessageToggle.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageToggle.golden.txt -------------------------------------------------------------------------------- /test/MessageToggle.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageToggle.pd -------------------------------------------------------------------------------- /test/MessageTrigger.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTrigger.golden.txt -------------------------------------------------------------------------------- /test/MessageTrigger.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageTrigger.pd -------------------------------------------------------------------------------- /test/MessageUnpack.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageUnpack.golden.txt -------------------------------------------------------------------------------- /test/MessageUnpack.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageUnpack.pd -------------------------------------------------------------------------------- /test/MessageUntil.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageUntil.golden.txt -------------------------------------------------------------------------------- /test/MessageUntil.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageUntil.pd -------------------------------------------------------------------------------- /test/MessageValue.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageValue.golden.txt -------------------------------------------------------------------------------- /test/MessageValue.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageValue.pd -------------------------------------------------------------------------------- /test/MessageWrap.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageWrap.golden.txt -------------------------------------------------------------------------------- /test/MessageWrap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/MessageWrap.pd -------------------------------------------------------------------------------- /test/RegisterReceiver.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/RegisterReceiver.pd -------------------------------------------------------------------------------- /test/dsp/DspCos.golden.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspCos.golden.wav -------------------------------------------------------------------------------- /test/dsp/DspCos.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspCos.pd -------------------------------------------------------------------------------- /test/dsp/DspInletOutlet.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspInletOutlet.pd -------------------------------------------------------------------------------- /test/dsp/DspLine.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspLine.pd -------------------------------------------------------------------------------- /test/dsp/DspOsc.golden.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspOsc.golden.wav -------------------------------------------------------------------------------- /test/dsp/DspOsc.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspOsc.pd -------------------------------------------------------------------------------- /test/dsp/DspPhasorSignal.golden.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspPhasorSignal.golden.wav -------------------------------------------------------------------------------- /test/dsp/DspPhasorSignal.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspPhasorSignal.pd -------------------------------------------------------------------------------- /test/dsp/DspSendReceive.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspSendReceive.pd -------------------------------------------------------------------------------- /test/dsp/DspThrowCatch.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspThrowCatch.pd -------------------------------------------------------------------------------- /test/dsp/DspWrap.golden.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspWrap.golden.wav -------------------------------------------------------------------------------- /test/dsp/DspWrap.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/dsp/DspWrap.pd -------------------------------------------------------------------------------- /test/me/rjdj/zengarden/DspGenWave.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/me/rjdj/zengarden/DspGenWave.java -------------------------------------------------------------------------------- /test/me/rjdj/zengarden/DspObjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/me/rjdj/zengarden/DspObjectTest.java -------------------------------------------------------------------------------- /test/me/rjdj/zengarden/PdObjectTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/me/rjdj/zengarden/PdObjectTest.java -------------------------------------------------------------------------------- /test/me/rjdj/zengarden/ZGInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/me/rjdj/zengarden/ZGInputStream.java -------------------------------------------------------------------------------- /test/me/rjdj/zengarden/ZGSystemTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/me/rjdj/zengarden/ZGSystemTest.java -------------------------------------------------------------------------------- /test/multiple-receiver-test.golden.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/multiple-receiver-test.golden.txt -------------------------------------------------------------------------------- /test/multiple-receiver-test.pd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mhroth/ZenGarden/HEAD/test/multiple-receiver-test.pd --------------------------------------------------------------------------------