├── .gitignore ├── Examples ├── TODO.txt ├── code examples │ ├── MIDI control.scd │ ├── Pattern support.scd │ ├── VBAP.scd │ ├── creating a FreeUdef.scd │ ├── draw crossfades.scd │ ├── draw wavefields.scd │ ├── generatig session.scd │ ├── generating lots of events score.scd │ ├── generating scores.scd │ ├── import v1 WFSPathArray xml.scd │ ├── mass editing.scd │ ├── path editor control.scd │ ├── point constellations.scd │ ├── score playback control 1.scd │ ├── score playback control 2.scd │ ├── speaker test generator.scd │ ├── touchosc example.scd │ ├── touchosc wfs.touchosc │ └── udefs and io.scd ├── developer tests │ ├── LoadBalancer tests.scd │ ├── Spec guis test.scd │ ├── Test FilePlayers 0.1.scd │ ├── Test sample sched.scd │ ├── VBAP.scd │ ├── load panner synthdefs.scd │ ├── sample sched simple test case - supernova.scd │ ├── sample sched simple test case.scd │ ├── test UScoreEditor rendering.scd │ └── test polygon inside detection.scd └── example scores │ ├── constellations.uscore │ ├── live input.uscore │ ├── local udef.uscore │ ├── lots of events.uscore │ ├── rain │ ├── rain.uscore │ ├── rainHF.scd │ ├── rainLF.scd │ └── rain_and_drops.uscore │ ├── simple automation.uscore │ ├── speaker tests │ ├── bea7 speaker test.uscore │ ├── game of life speaker test.uscore │ └── sampl speaker test.uscore │ ├── trajectory generation.uscore │ ├── user udef.uscore │ └── user udef │ └── sinGrain.scd ├── HelpSource ├── Guides │ ├── UChain-GUI.png │ ├── UScoreGUi.png │ ├── WFSCollider-Code.schelp │ ├── WFSCollider-Overview.schelp │ ├── WFSCollider-Panners.schelp │ ├── WFSCollider-Visual-Guide.schelp │ ├── WFSPathGUI.png │ ├── wfsDynamicIndex.png │ ├── wfsDynamicPlane.png │ ├── wfsDynamicPoint.png │ ├── wfsStaticIndex.png │ ├── wfsStaticPlane.png │ └── wfsStaticPoint.png ├── Reference │ └── WFS-theory.schelp └── Tutorials │ ├── WFS-Tutorial-1.png │ ├── WFS-Tutorial-2.png │ └── WFSCollider-tutorial.schelp ├── README.markdown ├── Session Templates ├── 8 live sources with path player.usession └── 8 live sources without path player.usession ├── V1-Compatibility └── WFS Classes │ ├── Engine │ ├── WFSServers.sc │ ├── WFSSynth.sc │ ├── WFSSynthDef.sc │ └── wfsSynthPlus.sc │ ├── Score Objects │ └── WFSEvent.sc │ ├── Spatial Objects │ ├── WFSPath.sc │ ├── WFSPathArray.sc │ ├── WFSPlane.sc │ ├── WFSPoint.sc │ ├── WFSPointArray.sc │ └── asWFSPoint.sc │ ├── WFSTools.sc │ └── wfsXMLSupport.sc ├── WFS ├── ArrayTransformer │ ├── ArrayEditView.sc │ ├── ArrayGeneratorDefs │ │ ├── brown.scd │ │ ├── line.scd │ │ ├── linrand.scd │ │ ├── pulse.scd │ │ ├── random.scd │ │ ├── sine.scd │ │ ├── spline.scd │ │ └── tri.scd │ ├── ArrayTransformer.sc │ ├── ArrayTransformerDefs │ │ ├── clip.scd │ │ ├── curve.scd │ │ ├── offset.scd │ │ ├── rotate.scd │ │ ├── round.scd │ │ ├── scale.scd │ │ ├── smooth.scd │ │ ├── sort.scd │ │ └── tilt.scd │ ├── ArrayTransformerView.sc │ └── extArrayGeneratorDef-prMakeArgViews.sc ├── GUI │ ├── AudioDeviceSpec.sc │ ├── UBasicEditView.sc │ ├── WFSEditViews.sc │ ├── WFSOptions │ │ ├── WFSMasterOptionsGUI.sc │ │ └── WFSOptionsGUI.sc │ ├── WFSPath │ │ ├── WFPathBufferView.sc │ │ ├── WFSPathGUI.sc │ │ ├── WFSPathTransformerView.sc │ │ ├── WFSPathView.sc │ │ ├── extSimpleTransformerDef-makeViews.sc │ │ ├── extWFSPath-draw.sc │ │ └── extWFSPathGeneratorDef-prMakeArgViews.sc │ ├── WFSPositionTrackerGUI.sc │ ├── WFSRectView.sc │ └── WFSSpeakerConf │ │ ├── WFSArrayConfGUI.sc │ │ ├── WFSSpeakerConfEditor.sc │ │ ├── WFSSpeakerConfGUI.sc │ │ └── WFSSpeakerConfView.sc ├── UDecodeBinaural.sc ├── UMapDefs │ ├── circle_trajectory.scd │ ├── clip_point.scd │ ├── crossfade_point.scd │ ├── delay_point.scd │ ├── envir_point_get.scd │ ├── follow_point.scd │ ├── index_trajectory.scd │ ├── lag_point.scd │ ├── lag_polar.scd │ ├── line_trajectory.scd │ ├── map_control_point.scd │ ├── map_point.scd │ ├── map_polar.scd │ ├── mirror_point.scd │ ├── motion_trajectory.scd │ ├── p_circle_point.scd │ ├── p_envir_point_get.scd │ ├── p_line_point.scd │ ├── p_map_point.scd │ ├── p_map_polar.scd │ ├── p_randomwalk_point.scd │ ├── p_sequencer_point.scd │ ├── point_angle.scd │ ├── point_axis.scd │ ├── point_direction.scd │ ├── point_distance.scd │ ├── point_in_rect.scd │ ├── point_poll.scd │ ├── point_speed.scd │ ├── random_point.scd │ ├── random_trajectory.scd │ ├── rotate_point.scd │ ├── sample_and_hold_point.scd │ ├── scale_point.scd │ ├── select_8_point.scd │ ├── shared_point_in.scd │ ├── shared_point_out.scd │ ├── slew_point.scd │ └── trajectory.scd ├── UNodeIDAllocator.sc ├── UPanCenter │ └── USpeakerConf.sc ├── UScore-openWFS.sc ├── USharedPointIO.sc ├── UnitDefs │ ├── decode_binaural.scd │ ├── decode_direction.scd │ ├── decode_panto.scd │ ├── encode_point.scd │ ├── envir_point_set.scd │ ├── furseDistanceFilter.scd │ ├── shared_point.scd │ ├── simpleReverb.scd │ ├── wfsCirclePath.scd │ ├── wfsDynamicDirectional.scd │ ├── wfsDynamicIndex.scd │ ├── wfsDynamicPlane.scd │ ├── wfsDynamicPoint.scd │ ├── wfsIndex.scd │ ├── wfsMasterIn.scd │ ├── wfsMasterOut.scd │ ├── wfsPathPlayer.scd │ ├── wfsPathSequencer.scd │ ├── wfsPoint.scd │ ├── wfsRandomPath.scd │ ├── wfsServerIn.scd │ ├── wfsSource.scd │ ├── wfsStaticIndex.scd │ ├── wfsStaticPlane.scd │ └── wfsStaticPoint.scd ├── UnitRacks │ ├── wfsSimpleReverb.scd │ └── wfsTrajectory.scd ├── WFSArrayPan.sc ├── WFSArrayPanDir.sc ├── WFSArrayPanDirSpecs.sc ├── WFSArrayPanDirSynthDefs.sc ├── WFSArrayPanSynthDefs.sc ├── WFSFocusDetector.sc ├── WFSFocusDetectorSynthDefs.sc ├── WFSLib.sc ├── WFSOptions.sc ├── WFSPath │ ├── SimpleTransformer.sc │ ├── WFSMultiPath.sc │ ├── WFSPath2.sc │ ├── WFSPathBox.sc │ ├── WFSPathBuffer.sc │ ├── WFSPathEditor.sc │ ├── WFSPathGeneratorDefs │ │ ├── align.scd │ │ ├── brown.scd │ │ ├── circle.scd │ │ ├── line.scd │ │ ├── lineTime.scd │ │ ├── lissajous.scd │ │ ├── orbit.scd │ │ ├── polygon.scd │ │ ├── randTime.scd │ │ ├── random.scd │ │ ├── round.scd │ │ ├── sine.scd │ │ ├── spiral.scd │ │ └── spline.scd │ ├── WFSPathPlayer.sc │ ├── WFSPathTransformer.sc │ ├── WFSPathTransformerDefs │ │ ├── circleSize.scd │ │ ├── clip.scd │ │ ├── duration.scd │ │ ├── equal.scd │ │ ├── move.scd │ │ ├── name.scd │ │ ├── reverse.scd │ │ ├── rotate.scd │ │ ├── scale.scd │ │ ├── simpleSize.scd │ │ ├── size.scd │ │ ├── smooth.scd │ │ ├── sort.scd │ │ └── type.scd │ ├── WFSPathURL.sc │ ├── WFSPointGroup.sc │ ├── WFSPointGroupGUI.sc │ └── WFSSplinePath.sc ├── WFSPositionTracker.sc ├── WFSPreviewScores │ ├── binaural.uscore │ ├── binaural_3o.uscore │ ├── binaural_5o.uscore │ └── binaural_7o.uscore ├── WFSPreviewSynthDefs.sc ├── WFSSpeakerConf.sc ├── WFSV2.sc ├── WFS_Specs.sc ├── ext_v1_import.sc ├── resources │ └── binauralIRs │ │ ├── 44100 │ │ ├── README.txt │ │ ├── irsOrd1.wav │ │ ├── irsOrd2.wav │ │ ├── irsOrd3.wav │ │ ├── irsOrd4.wav │ │ ├── irsOrd5.wav │ │ ├── irsOrd6.wav │ │ └── irsOrd7.wav │ │ ├── 48000 │ │ ├── irsOrd1.wav │ │ ├── irsOrd2.wav │ │ ├── irsOrd3.wav │ │ ├── irsOrd4.wav │ │ ├── irsOrd5.wav │ │ ├── irsOrd6.wav │ │ └── irsOrd7.wav │ │ ├── 88200 │ │ ├── irsOrd1.wav │ │ ├── irsOrd2.wav │ │ ├── irsOrd3.wav │ │ ├── irsOrd4.wav │ │ ├── irsOrd5.wav │ │ ├── irsOrd6.wav │ │ └── irsOrd7.wav │ │ └── 96000 │ │ ├── irsOrd1.wav │ │ ├── irsOrd2.wav │ │ ├── irsOrd3.wav │ │ ├── irsOrd4.wav │ │ ├── irsOrd5.wav │ │ ├── irsOrd6.wav │ │ └── irsOrd7.wav └── wfs_synthdefs.zip ├── WFSCollider-Class-Library.quark └── gpl.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Examples/TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/TODO.txt -------------------------------------------------------------------------------- /Examples/code examples/MIDI control.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/MIDI control.scd -------------------------------------------------------------------------------- /Examples/code examples/Pattern support.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/Pattern support.scd -------------------------------------------------------------------------------- /Examples/code examples/VBAP.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/VBAP.scd -------------------------------------------------------------------------------- /Examples/code examples/creating a FreeUdef.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/creating a FreeUdef.scd -------------------------------------------------------------------------------- /Examples/code examples/draw crossfades.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/draw crossfades.scd -------------------------------------------------------------------------------- /Examples/code examples/draw wavefields.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/draw wavefields.scd -------------------------------------------------------------------------------- /Examples/code examples/generatig session.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/generatig session.scd -------------------------------------------------------------------------------- /Examples/code examples/generating lots of events score.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/generating lots of events score.scd -------------------------------------------------------------------------------- /Examples/code examples/generating scores.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/generating scores.scd -------------------------------------------------------------------------------- /Examples/code examples/import v1 WFSPathArray xml.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/import v1 WFSPathArray xml.scd -------------------------------------------------------------------------------- /Examples/code examples/mass editing.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/mass editing.scd -------------------------------------------------------------------------------- /Examples/code examples/path editor control.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/path editor control.scd -------------------------------------------------------------------------------- /Examples/code examples/point constellations.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/point constellations.scd -------------------------------------------------------------------------------- /Examples/code examples/score playback control 1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/score playback control 1.scd -------------------------------------------------------------------------------- /Examples/code examples/score playback control 2.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/score playback control 2.scd -------------------------------------------------------------------------------- /Examples/code examples/speaker test generator.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/speaker test generator.scd -------------------------------------------------------------------------------- /Examples/code examples/touchosc example.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/touchosc example.scd -------------------------------------------------------------------------------- /Examples/code examples/touchosc wfs.touchosc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/touchosc wfs.touchosc -------------------------------------------------------------------------------- /Examples/code examples/udefs and io.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/code examples/udefs and io.scd -------------------------------------------------------------------------------- /Examples/developer tests/LoadBalancer tests.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/LoadBalancer tests.scd -------------------------------------------------------------------------------- /Examples/developer tests/Spec guis test.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/Spec guis test.scd -------------------------------------------------------------------------------- /Examples/developer tests/Test FilePlayers 0.1.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/Test FilePlayers 0.1.scd -------------------------------------------------------------------------------- /Examples/developer tests/Test sample sched.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/Test sample sched.scd -------------------------------------------------------------------------------- /Examples/developer tests/VBAP.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/VBAP.scd -------------------------------------------------------------------------------- /Examples/developer tests/load panner synthdefs.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/load panner synthdefs.scd -------------------------------------------------------------------------------- /Examples/developer tests/sample sched simple test case - supernova.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/sample sched simple test case - supernova.scd -------------------------------------------------------------------------------- /Examples/developer tests/sample sched simple test case.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/sample sched simple test case.scd -------------------------------------------------------------------------------- /Examples/developer tests/test UScoreEditor rendering.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/test UScoreEditor rendering.scd -------------------------------------------------------------------------------- /Examples/developer tests/test polygon inside detection.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/developer tests/test polygon inside detection.scd -------------------------------------------------------------------------------- /Examples/example scores/constellations.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/constellations.uscore -------------------------------------------------------------------------------- /Examples/example scores/live input.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/live input.uscore -------------------------------------------------------------------------------- /Examples/example scores/local udef.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/local udef.uscore -------------------------------------------------------------------------------- /Examples/example scores/lots of events.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/lots of events.uscore -------------------------------------------------------------------------------- /Examples/example scores/rain/rain.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/rain/rain.uscore -------------------------------------------------------------------------------- /Examples/example scores/rain/rainHF.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/rain/rainHF.scd -------------------------------------------------------------------------------- /Examples/example scores/rain/rainLF.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/rain/rainLF.scd -------------------------------------------------------------------------------- /Examples/example scores/rain/rain_and_drops.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/rain/rain_and_drops.uscore -------------------------------------------------------------------------------- /Examples/example scores/simple automation.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/simple automation.uscore -------------------------------------------------------------------------------- /Examples/example scores/speaker tests/bea7 speaker test.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/speaker tests/bea7 speaker test.uscore -------------------------------------------------------------------------------- /Examples/example scores/speaker tests/game of life speaker test.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/speaker tests/game of life speaker test.uscore -------------------------------------------------------------------------------- /Examples/example scores/speaker tests/sampl speaker test.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/speaker tests/sampl speaker test.uscore -------------------------------------------------------------------------------- /Examples/example scores/trajectory generation.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/trajectory generation.uscore -------------------------------------------------------------------------------- /Examples/example scores/user udef.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/user udef.uscore -------------------------------------------------------------------------------- /Examples/example scores/user udef/sinGrain.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Examples/example scores/user udef/sinGrain.scd -------------------------------------------------------------------------------- /HelpSource/Guides/UChain-GUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/UChain-GUI.png -------------------------------------------------------------------------------- /HelpSource/Guides/UScoreGUi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/UScoreGUi.png -------------------------------------------------------------------------------- /HelpSource/Guides/WFSCollider-Code.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/WFSCollider-Code.schelp -------------------------------------------------------------------------------- /HelpSource/Guides/WFSCollider-Overview.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/WFSCollider-Overview.schelp -------------------------------------------------------------------------------- /HelpSource/Guides/WFSCollider-Panners.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/WFSCollider-Panners.schelp -------------------------------------------------------------------------------- /HelpSource/Guides/WFSCollider-Visual-Guide.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/WFSCollider-Visual-Guide.schelp -------------------------------------------------------------------------------- /HelpSource/Guides/WFSPathGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/WFSPathGUI.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsDynamicIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsDynamicIndex.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsDynamicPlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsDynamicPlane.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsDynamicPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsDynamicPoint.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsStaticIndex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsStaticIndex.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsStaticPlane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsStaticPlane.png -------------------------------------------------------------------------------- /HelpSource/Guides/wfsStaticPoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Guides/wfsStaticPoint.png -------------------------------------------------------------------------------- /HelpSource/Reference/WFS-theory.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Reference/WFS-theory.schelp -------------------------------------------------------------------------------- /HelpSource/Tutorials/WFS-Tutorial-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Tutorials/WFS-Tutorial-1.png -------------------------------------------------------------------------------- /HelpSource/Tutorials/WFS-Tutorial-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Tutorials/WFS-Tutorial-2.png -------------------------------------------------------------------------------- /HelpSource/Tutorials/WFSCollider-tutorial.schelp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/HelpSource/Tutorials/WFSCollider-tutorial.schelp -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/README.markdown -------------------------------------------------------------------------------- /Session Templates/8 live sources with path player.usession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Session Templates/8 live sources with path player.usession -------------------------------------------------------------------------------- /Session Templates/8 live sources without path player.usession: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/Session Templates/8 live sources without path player.usession -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Engine/WFSServers.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Engine/WFSServers.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Engine/WFSSynth.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Engine/WFSSynth.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Engine/WFSSynthDef.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Engine/WFSSynthDef.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Engine/wfsSynthPlus.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Engine/wfsSynthPlus.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Score Objects/WFSEvent.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Score Objects/WFSEvent.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/WFSPath.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/WFSPath.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/WFSPathArray.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/WFSPathArray.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/WFSPlane.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/WFSPlane.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/WFSPoint.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/WFSPoint.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/WFSPointArray.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/WFSPointArray.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/Spatial Objects/asWFSPoint.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/Spatial Objects/asWFSPoint.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/WFSTools.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/WFSTools.sc -------------------------------------------------------------------------------- /V1-Compatibility/WFS Classes/wfsXMLSupport.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/V1-Compatibility/WFS Classes/wfsXMLSupport.sc -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayEditView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayEditView.sc -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/brown.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/brown.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/line.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/line.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/linrand.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/linrand.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/pulse.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/pulse.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/random.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/random.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/sine.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/sine.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/spline.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/spline.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayGeneratorDefs/tri.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayGeneratorDefs/tri.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformer.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformer.sc -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/clip.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/clip.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/curve.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/curve.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/offset.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/offset.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/rotate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/rotate.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/round.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/round.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/scale.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/scale.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/smooth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/smooth.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/sort.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/sort.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerDefs/tilt.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerDefs/tilt.scd -------------------------------------------------------------------------------- /WFS/ArrayTransformer/ArrayTransformerView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/ArrayTransformerView.sc -------------------------------------------------------------------------------- /WFS/ArrayTransformer/extArrayGeneratorDef-prMakeArgViews.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ArrayTransformer/extArrayGeneratorDef-prMakeArgViews.sc -------------------------------------------------------------------------------- /WFS/GUI/AudioDeviceSpec.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/AudioDeviceSpec.sc -------------------------------------------------------------------------------- /WFS/GUI/UBasicEditView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/UBasicEditView.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSEditViews.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSEditViews.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSOptions/WFSMasterOptionsGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSOptions/WFSMasterOptionsGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSOptions/WFSOptionsGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSOptions/WFSOptionsGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/WFPathBufferView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/WFPathBufferView.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/WFSPathGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/WFSPathGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/WFSPathTransformerView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/WFSPathTransformerView.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/WFSPathView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/WFSPathView.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/extSimpleTransformerDef-makeViews.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/extSimpleTransformerDef-makeViews.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/extWFSPath-draw.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/extWFSPath-draw.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPath/extWFSPathGeneratorDef-prMakeArgViews.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPath/extWFSPathGeneratorDef-prMakeArgViews.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSPositionTrackerGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSPositionTrackerGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSRectView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSRectView.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSSpeakerConf/WFSArrayConfGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSSpeakerConf/WFSArrayConfGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSSpeakerConf/WFSSpeakerConfEditor.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSSpeakerConf/WFSSpeakerConfEditor.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSSpeakerConf/WFSSpeakerConfGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSSpeakerConf/WFSSpeakerConfGUI.sc -------------------------------------------------------------------------------- /WFS/GUI/WFSSpeakerConf/WFSSpeakerConfView.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/GUI/WFSSpeakerConf/WFSSpeakerConfView.sc -------------------------------------------------------------------------------- /WFS/UDecodeBinaural.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UDecodeBinaural.sc -------------------------------------------------------------------------------- /WFS/UMapDefs/circle_trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/circle_trajectory.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/clip_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/clip_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/crossfade_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/crossfade_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/delay_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/delay_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/envir_point_get.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/envir_point_get.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/follow_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/follow_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/index_trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/index_trajectory.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/lag_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/lag_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/lag_polar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/lag_polar.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/line_trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/line_trajectory.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/map_control_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/map_control_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/map_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/map_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/map_polar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/map_polar.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/mirror_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/mirror_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/motion_trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/motion_trajectory.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_circle_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_circle_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_envir_point_get.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_envir_point_get.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_line_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_line_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_map_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_map_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_map_polar.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_map_polar.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_randomwalk_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_randomwalk_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/p_sequencer_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/p_sequencer_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_angle.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_angle.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_axis.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_axis.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_direction.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_direction.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_distance.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_distance.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_in_rect.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_in_rect.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_poll.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_poll.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/point_speed.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/point_speed.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/random_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/random_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/random_trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/random_trajectory.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/rotate_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/rotate_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/sample_and_hold_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/sample_and_hold_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/scale_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/scale_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/select_8_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/select_8_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/shared_point_in.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/shared_point_in.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/shared_point_out.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/shared_point_out.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/slew_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/slew_point.scd -------------------------------------------------------------------------------- /WFS/UMapDefs/trajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UMapDefs/trajectory.scd -------------------------------------------------------------------------------- /WFS/UNodeIDAllocator.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UNodeIDAllocator.sc -------------------------------------------------------------------------------- /WFS/UPanCenter/USpeakerConf.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UPanCenter/USpeakerConf.sc -------------------------------------------------------------------------------- /WFS/UScore-openWFS.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UScore-openWFS.sc -------------------------------------------------------------------------------- /WFS/USharedPointIO.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/USharedPointIO.sc -------------------------------------------------------------------------------- /WFS/UnitDefs/decode_binaural.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/decode_binaural.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/decode_direction.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/decode_direction.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/decode_panto.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/decode_panto.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/encode_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/encode_point.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/envir_point_set.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/envir_point_set.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/furseDistanceFilter.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/furseDistanceFilter.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/shared_point.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/shared_point.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/simpleReverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/simpleReverb.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsCirclePath.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsCirclePath.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsDynamicDirectional.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsDynamicDirectional.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsDynamicIndex.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsDynamicIndex.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsDynamicPlane.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsDynamicPlane.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsDynamicPoint.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsDynamicPoint.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsIndex.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsIndex.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsMasterIn.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsMasterIn.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsMasterOut.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsMasterOut.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsPathPlayer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsPathPlayer.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsPathSequencer.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsPathSequencer.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsPoint.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsPoint.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsRandomPath.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsRandomPath.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsServerIn.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsServerIn.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsSource.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsSource.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsStaticIndex.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsStaticIndex.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsStaticPlane.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsStaticPlane.scd -------------------------------------------------------------------------------- /WFS/UnitDefs/wfsStaticPoint.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitDefs/wfsStaticPoint.scd -------------------------------------------------------------------------------- /WFS/UnitRacks/wfsSimpleReverb.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitRacks/wfsSimpleReverb.scd -------------------------------------------------------------------------------- /WFS/UnitRacks/wfsTrajectory.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/UnitRacks/wfsTrajectory.scd -------------------------------------------------------------------------------- /WFS/WFSArrayPan.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSArrayPan.sc -------------------------------------------------------------------------------- /WFS/WFSArrayPanDir.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSArrayPanDir.sc -------------------------------------------------------------------------------- /WFS/WFSArrayPanDirSpecs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSArrayPanDirSpecs.sc -------------------------------------------------------------------------------- /WFS/WFSArrayPanDirSynthDefs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSArrayPanDirSynthDefs.sc -------------------------------------------------------------------------------- /WFS/WFSArrayPanSynthDefs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSArrayPanSynthDefs.sc -------------------------------------------------------------------------------- /WFS/WFSFocusDetector.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSFocusDetector.sc -------------------------------------------------------------------------------- /WFS/WFSFocusDetectorSynthDefs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSFocusDetectorSynthDefs.sc -------------------------------------------------------------------------------- /WFS/WFSLib.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSLib.sc -------------------------------------------------------------------------------- /WFS/WFSOptions.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSOptions.sc -------------------------------------------------------------------------------- /WFS/WFSPath/SimpleTransformer.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/SimpleTransformer.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSMultiPath.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSMultiPath.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPath2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPath2.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathBox.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathBox.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathBuffer.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathBuffer.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathEditor.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathEditor.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/align.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/align.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/brown.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/brown.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/circle.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/circle.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/line.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/line.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/lineTime.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/lineTime.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/lissajous.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/lissajous.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/orbit.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/orbit.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/polygon.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/polygon.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/randTime.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/randTime.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/random.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/random.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/round.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/round.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/sine.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/sine.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/spiral.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/spiral.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathGeneratorDefs/spline.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathGeneratorDefs/spline.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathPlayer.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathPlayer.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformer.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformer.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/circleSize.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/circleSize.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/clip.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/clip.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/duration.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/duration.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/equal.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/equal.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/move.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/move.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/name.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/name.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/reverse.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/reverse.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/rotate.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/rotate.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/scale.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/scale.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/simpleSize.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/simpleSize.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/size.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/size.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/smooth.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/smooth.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/sort.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/sort.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathTransformerDefs/type.scd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathTransformerDefs/type.scd -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPathURL.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPathURL.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPointGroup.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPointGroup.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSPointGroupGUI.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSPointGroupGUI.sc -------------------------------------------------------------------------------- /WFS/WFSPath/WFSSplinePath.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPath/WFSSplinePath.sc -------------------------------------------------------------------------------- /WFS/WFSPositionTracker.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPositionTracker.sc -------------------------------------------------------------------------------- /WFS/WFSPreviewScores/binaural.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPreviewScores/binaural.uscore -------------------------------------------------------------------------------- /WFS/WFSPreviewScores/binaural_3o.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPreviewScores/binaural_3o.uscore -------------------------------------------------------------------------------- /WFS/WFSPreviewScores/binaural_5o.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPreviewScores/binaural_5o.uscore -------------------------------------------------------------------------------- /WFS/WFSPreviewScores/binaural_7o.uscore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPreviewScores/binaural_7o.uscore -------------------------------------------------------------------------------- /WFS/WFSPreviewSynthDefs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSPreviewSynthDefs.sc -------------------------------------------------------------------------------- /WFS/WFSSpeakerConf.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSSpeakerConf.sc -------------------------------------------------------------------------------- /WFS/WFSV2.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFSV2.sc -------------------------------------------------------------------------------- /WFS/WFS_Specs.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/WFS_Specs.sc -------------------------------------------------------------------------------- /WFS/ext_v1_import.sc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/ext_v1_import.sc -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/README.txt -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd1.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd2.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd3.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd4.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd5.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd6.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/44100/irsOrd7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/44100/irsOrd7.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd1.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd2.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd3.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd4.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd5.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd6.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/48000/irsOrd7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/48000/irsOrd7.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd1.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd2.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd3.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd4.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd5.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd6.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/88200/irsOrd7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/88200/irsOrd7.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd1.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd2.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd3.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd4.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd5.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd6.wav -------------------------------------------------------------------------------- /WFS/resources/binauralIRs/96000/irsOrd7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/resources/binauralIRs/96000/irsOrd7.wav -------------------------------------------------------------------------------- /WFS/wfs_synthdefs.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFS/wfs_synthdefs.zip -------------------------------------------------------------------------------- /WFSCollider-Class-Library.quark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/WFSCollider-Class-Library.quark -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GameOfLife/WFSCollider-Class-Library/HEAD/gpl.txt --------------------------------------------------------------------------------