├── .gitattributes ├── .gitignore ├── .gitmodules ├── README.md ├── components ├── ctrl_mappings.tox ├── data_node.tox ├── data_node_bank.tox ├── data_node_marker.tox ├── data_selector.tox ├── feedback_core.tox ├── kaleido_shader.frag ├── menu_param_field.tox ├── menu_table_builder.tox ├── module_collapsed_header.tox ├── module_shell.tox ├── param_filter.tox └── yeataro │ └── TD_Anisotropic_Kuwahara_v1_1_099.tox ├── content ├── fragment-map-1.ai ├── fragment-map-1.png ├── fragment-map-1.svg └── fragment-map-1.swf ├── control ├── midi-mappings.txt ├── osc-midi-mappings.json ├── osc-midi-mappings.txt ├── osc-midi-router.maxpat └── vjzual3-control Project │ ├── Ableton Project Info │ ├── AProject.ico │ └── Project8_1.cfg │ ├── Desktop.ini │ └── vjzual3-control.als ├── instances ├── vjzual3_distopia.toe ├── vjzual3_flow.toe ├── vjzual3_live.toe ├── vzjual3_ink.toe ├── vzjual3_instance_template.toe └── vzjual3_position.toe ├── lib ├── MenuTableBuilder.py ├── app.py ├── autoui.py ├── clips.py ├── module.py ├── module_stub.py ├── nodes.py ├── schema.py └── server.py ├── midi-mappings.txt ├── modules ├── advanced_noise_gen_module.tox ├── background_module.tox ├── blend_module.tox ├── bloom_module.tox ├── channel_warp_module.tox ├── color_adjust_module.tox ├── delay_module.tox ├── depth_module.tox ├── edge_feedback_module.tox ├── edge_module.tox ├── external_in_module.tox ├── external_out_module.tox ├── feedback_module.tox ├── flip_module.tox ├── flow_abs_module.tox ├── hex_grid_module.tox ├── iterate_module.tox ├── kaleido_frag_shader.frag ├── kaleido_module.tox ├── lfo_module.tox ├── macro_module.tox ├── magnets_module.tox ├── masked_feedback_module.tox ├── matte_module.tox ├── mirror_module.tox ├── mixer_module.tox ├── multi_noise_gen_module.tox ├── multi_tap_delay_module.tox ├── multi_tap_delay_shader.frag ├── multi_tap_shader_shared.frag ├── noise_gen_module.tox ├── panels_module.tox ├── panels_shader.frag ├── panels_shader.vert ├── pattern_gen_module.tox ├── pull_module.tox ├── pull_shader.frag ├── ramp_gen_module.tox ├── recolor_module.tox ├── redux_module.tox ├── remap_module.tox ├── reproject_module.tox ├── shader_common.frag ├── shape_gen_module.tox ├── stutter_module.tox ├── surface_module.tox ├── switcher_module.tox ├── time_machine_module.tox ├── tint_module.tox ├── trails_module.tox ├── transform_module.tox ├── video_particles_module.tox ├── video_particles_render_shader.frag ├── video_particles_render_shader.geom ├── video_particles_render_shader.vert ├── video_particles_simulation_shader.frag ├── video_player_module.tox ├── viewer_module.tox ├── voronoi_fx_module.tox ├── voronoi_module.tox └── warp_module.tox ├── test ├── external-flow-abs-tester.toe └── external-tester.toe ├── vjzual.json ├── vjzual3-control-router.toe ├── vjzual3-schema.json ├── vjzual3.toe └── web ├── favicon.ico └── index.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/README.md -------------------------------------------------------------------------------- /components/ctrl_mappings.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/ctrl_mappings.tox -------------------------------------------------------------------------------- /components/data_node.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/data_node.tox -------------------------------------------------------------------------------- /components/data_node_bank.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/data_node_bank.tox -------------------------------------------------------------------------------- /components/data_node_marker.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/data_node_marker.tox -------------------------------------------------------------------------------- /components/data_selector.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/data_selector.tox -------------------------------------------------------------------------------- /components/feedback_core.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/feedback_core.tox -------------------------------------------------------------------------------- /components/kaleido_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/kaleido_shader.frag -------------------------------------------------------------------------------- /components/menu_param_field.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/menu_param_field.tox -------------------------------------------------------------------------------- /components/menu_table_builder.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/menu_table_builder.tox -------------------------------------------------------------------------------- /components/module_collapsed_header.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/module_collapsed_header.tox -------------------------------------------------------------------------------- /components/module_shell.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/module_shell.tox -------------------------------------------------------------------------------- /components/param_filter.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/param_filter.tox -------------------------------------------------------------------------------- /components/yeataro/TD_Anisotropic_Kuwahara_v1_1_099.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/components/yeataro/TD_Anisotropic_Kuwahara_v1_1_099.tox -------------------------------------------------------------------------------- /content/fragment-map-1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/content/fragment-map-1.ai -------------------------------------------------------------------------------- /content/fragment-map-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/content/fragment-map-1.png -------------------------------------------------------------------------------- /content/fragment-map-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/content/fragment-map-1.svg -------------------------------------------------------------------------------- /content/fragment-map-1.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/content/fragment-map-1.swf -------------------------------------------------------------------------------- /control/midi-mappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/midi-mappings.txt -------------------------------------------------------------------------------- /control/osc-midi-mappings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/osc-midi-mappings.json -------------------------------------------------------------------------------- /control/osc-midi-mappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/osc-midi-mappings.txt -------------------------------------------------------------------------------- /control/osc-midi-router.maxpat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/osc-midi-router.maxpat -------------------------------------------------------------------------------- /control/vjzual3-control Project/Ableton Project Info/AProject.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/vjzual3-control Project/Ableton Project Info/AProject.ico -------------------------------------------------------------------------------- /control/vjzual3-control Project/Ableton Project Info/Project8_1.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/vjzual3-control Project/Ableton Project Info/Project8_1.cfg -------------------------------------------------------------------------------- /control/vjzual3-control Project/Desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/vjzual3-control Project/Desktop.ini -------------------------------------------------------------------------------- /control/vjzual3-control Project/vjzual3-control.als: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/control/vjzual3-control Project/vjzual3-control.als -------------------------------------------------------------------------------- /instances/vjzual3_distopia.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vjzual3_distopia.toe -------------------------------------------------------------------------------- /instances/vjzual3_flow.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vjzual3_flow.toe -------------------------------------------------------------------------------- /instances/vjzual3_live.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vjzual3_live.toe -------------------------------------------------------------------------------- /instances/vzjual3_ink.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vzjual3_ink.toe -------------------------------------------------------------------------------- /instances/vzjual3_instance_template.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vzjual3_instance_template.toe -------------------------------------------------------------------------------- /instances/vzjual3_position.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/instances/vzjual3_position.toe -------------------------------------------------------------------------------- /lib/MenuTableBuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/MenuTableBuilder.py -------------------------------------------------------------------------------- /lib/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/app.py -------------------------------------------------------------------------------- /lib/autoui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/autoui.py -------------------------------------------------------------------------------- /lib/clips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/clips.py -------------------------------------------------------------------------------- /lib/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/module.py -------------------------------------------------------------------------------- /lib/module_stub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/module_stub.py -------------------------------------------------------------------------------- /lib/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/nodes.py -------------------------------------------------------------------------------- /lib/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/schema.py -------------------------------------------------------------------------------- /lib/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/lib/server.py -------------------------------------------------------------------------------- /midi-mappings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/midi-mappings.txt -------------------------------------------------------------------------------- /modules/advanced_noise_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/advanced_noise_gen_module.tox -------------------------------------------------------------------------------- /modules/background_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/background_module.tox -------------------------------------------------------------------------------- /modules/blend_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/blend_module.tox -------------------------------------------------------------------------------- /modules/bloom_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/bloom_module.tox -------------------------------------------------------------------------------- /modules/channel_warp_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/channel_warp_module.tox -------------------------------------------------------------------------------- /modules/color_adjust_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/color_adjust_module.tox -------------------------------------------------------------------------------- /modules/delay_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/delay_module.tox -------------------------------------------------------------------------------- /modules/depth_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/depth_module.tox -------------------------------------------------------------------------------- /modules/edge_feedback_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/edge_feedback_module.tox -------------------------------------------------------------------------------- /modules/edge_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/edge_module.tox -------------------------------------------------------------------------------- /modules/external_in_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/external_in_module.tox -------------------------------------------------------------------------------- /modules/external_out_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/external_out_module.tox -------------------------------------------------------------------------------- /modules/feedback_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/feedback_module.tox -------------------------------------------------------------------------------- /modules/flip_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/flip_module.tox -------------------------------------------------------------------------------- /modules/flow_abs_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/flow_abs_module.tox -------------------------------------------------------------------------------- /modules/hex_grid_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/hex_grid_module.tox -------------------------------------------------------------------------------- /modules/iterate_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/iterate_module.tox -------------------------------------------------------------------------------- /modules/kaleido_frag_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/kaleido_frag_shader.frag -------------------------------------------------------------------------------- /modules/kaleido_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/kaleido_module.tox -------------------------------------------------------------------------------- /modules/lfo_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/lfo_module.tox -------------------------------------------------------------------------------- /modules/macro_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/macro_module.tox -------------------------------------------------------------------------------- /modules/magnets_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/magnets_module.tox -------------------------------------------------------------------------------- /modules/masked_feedback_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/masked_feedback_module.tox -------------------------------------------------------------------------------- /modules/matte_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/matte_module.tox -------------------------------------------------------------------------------- /modules/mirror_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/mirror_module.tox -------------------------------------------------------------------------------- /modules/mixer_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/mixer_module.tox -------------------------------------------------------------------------------- /modules/multi_noise_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/multi_noise_gen_module.tox -------------------------------------------------------------------------------- /modules/multi_tap_delay_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/multi_tap_delay_module.tox -------------------------------------------------------------------------------- /modules/multi_tap_delay_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/multi_tap_delay_shader.frag -------------------------------------------------------------------------------- /modules/multi_tap_shader_shared.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/multi_tap_shader_shared.frag -------------------------------------------------------------------------------- /modules/noise_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/noise_gen_module.tox -------------------------------------------------------------------------------- /modules/panels_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/panels_module.tox -------------------------------------------------------------------------------- /modules/panels_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/panels_shader.frag -------------------------------------------------------------------------------- /modules/panels_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/panels_shader.vert -------------------------------------------------------------------------------- /modules/pattern_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/pattern_gen_module.tox -------------------------------------------------------------------------------- /modules/pull_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/pull_module.tox -------------------------------------------------------------------------------- /modules/pull_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/pull_shader.frag -------------------------------------------------------------------------------- /modules/ramp_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/ramp_gen_module.tox -------------------------------------------------------------------------------- /modules/recolor_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/recolor_module.tox -------------------------------------------------------------------------------- /modules/redux_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/redux_module.tox -------------------------------------------------------------------------------- /modules/remap_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/remap_module.tox -------------------------------------------------------------------------------- /modules/reproject_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/reproject_module.tox -------------------------------------------------------------------------------- /modules/shader_common.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/shader_common.frag -------------------------------------------------------------------------------- /modules/shape_gen_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/shape_gen_module.tox -------------------------------------------------------------------------------- /modules/stutter_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/stutter_module.tox -------------------------------------------------------------------------------- /modules/surface_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/surface_module.tox -------------------------------------------------------------------------------- /modules/switcher_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/switcher_module.tox -------------------------------------------------------------------------------- /modules/time_machine_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/time_machine_module.tox -------------------------------------------------------------------------------- /modules/tint_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/tint_module.tox -------------------------------------------------------------------------------- /modules/trails_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/trails_module.tox -------------------------------------------------------------------------------- /modules/transform_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/transform_module.tox -------------------------------------------------------------------------------- /modules/video_particles_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_particles_module.tox -------------------------------------------------------------------------------- /modules/video_particles_render_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_particles_render_shader.frag -------------------------------------------------------------------------------- /modules/video_particles_render_shader.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_particles_render_shader.geom -------------------------------------------------------------------------------- /modules/video_particles_render_shader.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_particles_render_shader.vert -------------------------------------------------------------------------------- /modules/video_particles_simulation_shader.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_particles_simulation_shader.frag -------------------------------------------------------------------------------- /modules/video_player_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/video_player_module.tox -------------------------------------------------------------------------------- /modules/viewer_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/viewer_module.tox -------------------------------------------------------------------------------- /modules/voronoi_fx_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/voronoi_fx_module.tox -------------------------------------------------------------------------------- /modules/voronoi_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/voronoi_module.tox -------------------------------------------------------------------------------- /modules/warp_module.tox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/modules/warp_module.tox -------------------------------------------------------------------------------- /test/external-flow-abs-tester.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/test/external-flow-abs-tester.toe -------------------------------------------------------------------------------- /test/external-tester.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/test/external-tester.toe -------------------------------------------------------------------------------- /vjzual.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /vjzual3-control-router.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/vjzual3-control-router.toe -------------------------------------------------------------------------------- /vjzual3-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/vjzual3-schema.json -------------------------------------------------------------------------------- /vjzual3.toe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/vjzual3.toe -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3kt/vjzual3/HEAD/web/index.html --------------------------------------------------------------------------------