├── .gitignore ├── AudioToILDA └── AudioToILDA.toe ├── Audio_React └── Audio_React.toe ├── Blanking_Example ├── Blanking_Example_01.toe ├── Blanking_Example_02.toe └── Blanking_Example_03_particles.toe ├── Color_Modulation ├── The_Plaid_Hole.toe └── color_mod.toe ├── Digital_Color └── Digital_Color.toe ├── Kinect_Trace ├── Kinect_Trace.png ├── Kinect_Trace.toe └── kinect_depth_example.png ├── LICENSE ├── Lissajous ├── Lissajous.toe └── Lissajous2_electric_boogaloo.toe ├── OScope_Visualize ├── OScope_Visualize.toe ├── README.md └── oscope.png ├── Python_Generators ├── Python_Spiral.toe └── Python_Spiral_SOP.toe ├── README.md ├── Raster_Scan ├── Raster_Scan.toe └── Raster_Scan_with_Z.toe ├── SOPs_with_Camera └── SOPs_with_camera.toe ├── Shapes_Example ├── README.md ├── Shapes_Example.toe ├── Shapes_with_depth_shading.toe └── sphere.png ├── Test_Patterns ├── Test_Pattern.toe └── ildatsta.wav ├── Text_Creep └── TextCreep.toe ├── Works_In_Progress ├── Copy │ └── Copy Example.toe ├── Kinect_Laser_Fire │ ├── Kinect_Laser_Fire.toe │ └── README.md ├── Pong │ ├── Pong.toe │ └── README.md └── faces.md ├── Z_Rotation ├── Rotation_Module.toe ├── Z_transform_GLSL.toe └── Z_transform_test.toe ├── controls ├── adv_ether_dream_conrols.tox ├── adv_simulator.tox ├── control_signal_to_audio.tox ├── ether_dream_controls.tox ├── laser_simulator.tox └── rotation_module.tox ├── ether_dream_connections.png └── laser_hack_101.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | *.*.toe 2 | -------------------------------------------------------------------------------- /AudioToILDA/AudioToILDA.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/AudioToILDA/AudioToILDA.toe -------------------------------------------------------------------------------- /Audio_React/Audio_React.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Audio_React/Audio_React.toe -------------------------------------------------------------------------------- /Blanking_Example/Blanking_Example_01.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Blanking_Example/Blanking_Example_01.toe -------------------------------------------------------------------------------- /Blanking_Example/Blanking_Example_02.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Blanking_Example/Blanking_Example_02.toe -------------------------------------------------------------------------------- /Blanking_Example/Blanking_Example_03_particles.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Blanking_Example/Blanking_Example_03_particles.toe -------------------------------------------------------------------------------- /Color_Modulation/The_Plaid_Hole.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Color_Modulation/The_Plaid_Hole.toe -------------------------------------------------------------------------------- /Color_Modulation/color_mod.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Color_Modulation/color_mod.toe -------------------------------------------------------------------------------- /Digital_Color/Digital_Color.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Digital_Color/Digital_Color.toe -------------------------------------------------------------------------------- /Kinect_Trace/Kinect_Trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Kinect_Trace/Kinect_Trace.png -------------------------------------------------------------------------------- /Kinect_Trace/Kinect_Trace.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Kinect_Trace/Kinect_Trace.toe -------------------------------------------------------------------------------- /Kinect_Trace/kinect_depth_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Kinect_Trace/kinect_depth_example.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/LICENSE -------------------------------------------------------------------------------- /Lissajous/Lissajous.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Lissajous/Lissajous.toe -------------------------------------------------------------------------------- /Lissajous/Lissajous2_electric_boogaloo.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Lissajous/Lissajous2_electric_boogaloo.toe -------------------------------------------------------------------------------- /OScope_Visualize/OScope_Visualize.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/OScope_Visualize/OScope_Visualize.toe -------------------------------------------------------------------------------- /OScope_Visualize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/OScope_Visualize/README.md -------------------------------------------------------------------------------- /OScope_Visualize/oscope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/OScope_Visualize/oscope.png -------------------------------------------------------------------------------- /Python_Generators/Python_Spiral.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Python_Generators/Python_Spiral.toe -------------------------------------------------------------------------------- /Python_Generators/Python_Spiral_SOP.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Python_Generators/Python_Spiral_SOP.toe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/README.md -------------------------------------------------------------------------------- /Raster_Scan/Raster_Scan.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Raster_Scan/Raster_Scan.toe -------------------------------------------------------------------------------- /Raster_Scan/Raster_Scan_with_Z.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Raster_Scan/Raster_Scan_with_Z.toe -------------------------------------------------------------------------------- /SOPs_with_Camera/SOPs_with_camera.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/SOPs_with_Camera/SOPs_with_camera.toe -------------------------------------------------------------------------------- /Shapes_Example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Shapes_Example/README.md -------------------------------------------------------------------------------- /Shapes_Example/Shapes_Example.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Shapes_Example/Shapes_Example.toe -------------------------------------------------------------------------------- /Shapes_Example/Shapes_with_depth_shading.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Shapes_Example/Shapes_with_depth_shading.toe -------------------------------------------------------------------------------- /Shapes_Example/sphere.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Shapes_Example/sphere.png -------------------------------------------------------------------------------- /Test_Patterns/Test_Pattern.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Test_Patterns/Test_Pattern.toe -------------------------------------------------------------------------------- /Test_Patterns/ildatsta.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Test_Patterns/ildatsta.wav -------------------------------------------------------------------------------- /Text_Creep/TextCreep.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Text_Creep/TextCreep.toe -------------------------------------------------------------------------------- /Works_In_Progress/Copy/Copy Example.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/Copy/Copy Example.toe -------------------------------------------------------------------------------- /Works_In_Progress/Kinect_Laser_Fire/Kinect_Laser_Fire.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/Kinect_Laser_Fire/Kinect_Laser_Fire.toe -------------------------------------------------------------------------------- /Works_In_Progress/Kinect_Laser_Fire/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/Kinect_Laser_Fire/README.md -------------------------------------------------------------------------------- /Works_In_Progress/Pong/Pong.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/Pong/Pong.toe -------------------------------------------------------------------------------- /Works_In_Progress/Pong/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/Pong/README.md -------------------------------------------------------------------------------- /Works_In_Progress/faces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Works_In_Progress/faces.md -------------------------------------------------------------------------------- /Z_Rotation/Rotation_Module.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Z_Rotation/Rotation_Module.toe -------------------------------------------------------------------------------- /Z_Rotation/Z_transform_GLSL.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Z_Rotation/Z_transform_GLSL.toe -------------------------------------------------------------------------------- /Z_Rotation/Z_transform_test.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/Z_Rotation/Z_transform_test.toe -------------------------------------------------------------------------------- /controls/adv_ether_dream_conrols.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/adv_ether_dream_conrols.tox -------------------------------------------------------------------------------- /controls/adv_simulator.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/adv_simulator.tox -------------------------------------------------------------------------------- /controls/control_signal_to_audio.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/control_signal_to_audio.tox -------------------------------------------------------------------------------- /controls/ether_dream_controls.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/ether_dream_controls.tox -------------------------------------------------------------------------------- /controls/laser_simulator.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/laser_simulator.tox -------------------------------------------------------------------------------- /controls/rotation_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/controls/rotation_module.tox -------------------------------------------------------------------------------- /ether_dream_connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/ether_dream_connections.png -------------------------------------------------------------------------------- /laser_hack_101.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tgreiser/etherdream-touch-designer/HEAD/laser_hack_101.pdf --------------------------------------------------------------------------------