gitextract_zbh9fj9i/ ├── .gitignore ├── README.md ├── changelog.txt ├── examples/ │ ├── 1_getting_started/ │ │ ├── basic_drawing/ │ │ │ └── basic_drawing.pde │ │ ├── calibration/ │ │ │ └── calibration.pde │ │ ├── clock/ │ │ │ └── clock.pde │ │ ├── custom_soundcard/ │ │ │ └── custom_soundcard.pde │ │ ├── lissapong/ │ │ │ └── lissapong.pde │ │ └── template/ │ │ └── template.pde │ ├── 2_shapes/ │ │ ├── a_walkthrough_primatives/ │ │ │ └── a_walkthrough_primatives.pde │ │ ├── additive_synth_shapes/ │ │ │ └── additive_synth_shapes.pde │ │ ├── lissajous/ │ │ │ └── lissajous.pde │ │ ├── paramless_shapes/ │ │ │ └── paramless_shapes.pde │ │ ├── sphere/ │ │ │ └── sphere.pde │ │ └── torus/ │ │ └── torus.pde │ ├── 3_typography/ │ │ ├── hershey_fonts/ │ │ │ └── hershey_fonts.pde │ │ └── scopewriter/ │ │ └── scopewriter.pde │ ├── 4_inputs/ │ │ ├── fonts/ │ │ │ └── fonts.pde │ │ ├── kinect/ │ │ │ └── kinect.pde │ │ ├── obj/ │ │ │ └── obj.pde │ │ ├── svg/ │ │ │ └── svg.pde │ │ ├── syphon/ │ │ │ └── syphon.pde │ │ ├── video/ │ │ │ └── video.pde │ │ ├── webcam/ │ │ │ └── webcam.pde │ │ └── webcam_processing4/ │ │ └── webcam_processing4.pde │ ├── 5_displays/ │ │ ├── laser/ │ │ │ └── laser.pde │ │ └── vectrex/ │ │ └── vectrex.pde │ ├── 6_outputs/ │ │ ├── audio_recorder/ │ │ │ └── audio_recorder.pde │ │ └── osc_wavetables/ │ │ └── osc_wavetables.pde │ ├── 7_custom_waves/ │ │ ├── customWaves_drawingXYZ/ │ │ │ └── customWaves_drawingXYZ.pde │ │ ├── customWaves_noiseXY/ │ │ │ └── customWaves_noiseXY.pde │ │ └── setWaveforms_noise/ │ │ └── setWaveforms_noise.pde │ ├── 8_music/ │ │ ├── MidiScope/ │ │ │ └── MidiScope.pde │ │ ├── audio_filters/ │ │ │ └── audio_filters.pde │ │ └── freq_keyboard_notes/ │ │ └── freq_keyboard_notes.pde │ └── 9_misc/ │ ├── freq_amp_modulation/ │ │ └── freq_amp_modulation.pde │ └── multiscopes_class/ │ └── multiscopes_class.pde ├── license.txt ├── resources/ │ ├── README.md │ ├── build.properties │ ├── build.xml │ ├── code/ │ │ ├── ExampleTaglet.java │ │ ├── ant-contrib-1.0b3.jar │ │ └── doc.sh │ ├── library.properties │ └── stylesheet.css ├── src/ │ └── xyscope/ │ ├── XYWavetable.java │ └── XYscope.java └── web/ ├── includes/ │ ├── css/ │ │ └── styles.css │ └── js/ │ ├── highlight/ │ │ ├── a11y-dark.css │ │ ├── a11y-light.css │ │ ├── docco.css │ │ ├── github.css │ │ └── highlight.pack.js │ ├── render.js │ └── stmd.js └── index.html