├── .gitignore ├── README.md ├── TektShared.toe ├── __init__.py ├── arrow.svg ├── audiobandanalysis.tox ├── audioportctrl.tox ├── bloom.tox ├── codev2.tox ├── codev2_horz.tox ├── codev2new.tox ├── colorshift.tox ├── distortion.tox ├── echo.tox ├── freqbandctrl.tox ├── freqbandctrl2.tox ├── functions.tox ├── gater.tox ├── hsvtorgb.tox ├── kaleidoscope.tox ├── leapmotioninput.tox ├── livid preset.json ├── mftwister.tox ├── midi-fighter-twister.mfs ├── midi-fighter-twister2.mfs ├── mididevice.tox ├── mididevicein.tox ├── midideviceout.tox ├── namedcolorpicker.tox ├── namedcolorpicker2.tox ├── outputrecording.tox ├── outputrecording2.tox ├── outputrecording3.tox ├── panel.ai ├── panel.png ├── paramsmoother.tox ├── presetslot.tox ├── presetslotui.tox ├── pulseratelimiter.tox ├── quantizer.tox ├── ratecontrol.tox ├── recorder.tox ├── reordercolumns_script.py ├── rgbtohsv.tox ├── self_deleting_button.tox ├── simplevaluedisplay.tox ├── spinpulser.tox ├── spinpulser2.tox ├── spinpulser2a.tox ├── spinpulserbase.tox ├── spiral.tox ├── stutter.tox ├── tekt.py ├── tektmodules ├── __init__.py ├── settings.py ├── tables.py └── uiutils.py ├── timesource.tox ├── tocenterwidth.tox ├── tominmax.tox ├── triggeredanim.tox └── zerosl.tox /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | __pycache__ 3 | *.pyc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/README.md -------------------------------------------------------------------------------- /TektShared.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/TektShared.toe -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/__init__.py -------------------------------------------------------------------------------- /arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/arrow.svg -------------------------------------------------------------------------------- /audiobandanalysis.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/audiobandanalysis.tox -------------------------------------------------------------------------------- /audioportctrl.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/audioportctrl.tox -------------------------------------------------------------------------------- /bloom.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/bloom.tox -------------------------------------------------------------------------------- /codev2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/codev2.tox -------------------------------------------------------------------------------- /codev2_horz.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/codev2_horz.tox -------------------------------------------------------------------------------- /codev2new.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/codev2new.tox -------------------------------------------------------------------------------- /colorshift.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/colorshift.tox -------------------------------------------------------------------------------- /distortion.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/distortion.tox -------------------------------------------------------------------------------- /echo.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/echo.tox -------------------------------------------------------------------------------- /freqbandctrl.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/freqbandctrl.tox -------------------------------------------------------------------------------- /freqbandctrl2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/freqbandctrl2.tox -------------------------------------------------------------------------------- /functions.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/functions.tox -------------------------------------------------------------------------------- /gater.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/gater.tox -------------------------------------------------------------------------------- /hsvtorgb.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/hsvtorgb.tox -------------------------------------------------------------------------------- /kaleidoscope.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/kaleidoscope.tox -------------------------------------------------------------------------------- /leapmotioninput.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/leapmotioninput.tox -------------------------------------------------------------------------------- /livid preset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/livid preset.json -------------------------------------------------------------------------------- /mftwister.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/mftwister.tox -------------------------------------------------------------------------------- /midi-fighter-twister.mfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/midi-fighter-twister.mfs -------------------------------------------------------------------------------- /midi-fighter-twister2.mfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/midi-fighter-twister2.mfs -------------------------------------------------------------------------------- /mididevice.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/mididevice.tox -------------------------------------------------------------------------------- /mididevicein.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/mididevicein.tox -------------------------------------------------------------------------------- /midideviceout.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/midideviceout.tox -------------------------------------------------------------------------------- /namedcolorpicker.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/namedcolorpicker.tox -------------------------------------------------------------------------------- /namedcolorpicker2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/namedcolorpicker2.tox -------------------------------------------------------------------------------- /outputrecording.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/outputrecording.tox -------------------------------------------------------------------------------- /outputrecording2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/outputrecording2.tox -------------------------------------------------------------------------------- /outputrecording3.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/outputrecording3.tox -------------------------------------------------------------------------------- /panel.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/panel.ai -------------------------------------------------------------------------------- /panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/panel.png -------------------------------------------------------------------------------- /paramsmoother.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/paramsmoother.tox -------------------------------------------------------------------------------- /presetslot.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/presetslot.tox -------------------------------------------------------------------------------- /presetslotui.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/presetslotui.tox -------------------------------------------------------------------------------- /pulseratelimiter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/pulseratelimiter.tox -------------------------------------------------------------------------------- /quantizer.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/quantizer.tox -------------------------------------------------------------------------------- /ratecontrol.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/ratecontrol.tox -------------------------------------------------------------------------------- /recorder.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/recorder.tox -------------------------------------------------------------------------------- /reordercolumns_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/reordercolumns_script.py -------------------------------------------------------------------------------- /rgbtohsv.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/rgbtohsv.tox -------------------------------------------------------------------------------- /self_deleting_button.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/self_deleting_button.tox -------------------------------------------------------------------------------- /simplevaluedisplay.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/simplevaluedisplay.tox -------------------------------------------------------------------------------- /spinpulser.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/spinpulser.tox -------------------------------------------------------------------------------- /spinpulser2.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/spinpulser2.tox -------------------------------------------------------------------------------- /spinpulser2a.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/spinpulser2a.tox -------------------------------------------------------------------------------- /spinpulserbase.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/spinpulserbase.tox -------------------------------------------------------------------------------- /spiral.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/spiral.tox -------------------------------------------------------------------------------- /stutter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/stutter.tox -------------------------------------------------------------------------------- /tekt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tekt.py -------------------------------------------------------------------------------- /tektmodules/__init__.py: -------------------------------------------------------------------------------- 1 | __author__ = 'tekt' 2 | -------------------------------------------------------------------------------- /tektmodules/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tektmodules/settings.py -------------------------------------------------------------------------------- /tektmodules/tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tektmodules/tables.py -------------------------------------------------------------------------------- /tektmodules/uiutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tektmodules/uiutils.py -------------------------------------------------------------------------------- /timesource.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/timesource.tox -------------------------------------------------------------------------------- /tocenterwidth.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tocenterwidth.tox -------------------------------------------------------------------------------- /tominmax.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/tominmax.tox -------------------------------------------------------------------------------- /triggeredanim.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/triggeredanim.tox -------------------------------------------------------------------------------- /zerosl.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/tektshared/HEAD/zerosl.tox --------------------------------------------------------------------------------