├── .gitignore ├── 404.html ├── Gemfile ├── Gemfile.lock ├── LICENSE.md ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── head.html └── header.html ├── _layouts ├── all.html ├── category.html ├── full_page.html ├── home.html ├── minimal.html ├── redirect.html └── split_view.html ├── _posts ├── 2015-01-24-fermat-spirals-vogel-angle-phyllotaxis.md ├── 2016-03-14-processing-hexagonal-layout.md ├── 2016-03-25-processing-hockey-rink.markdown ├── 2017-11-04-p5-js-procedural-generation-of-terrain-with-perlin-noise.markdown ├── 2020-08-27-flash-gravity-sim.markdown └── coding-challenges │ ├── 2018-09-26-coding-challenge-1-starfield.markdown │ ├── 2018-09-30-coding-challenge-2-menger-sponge.markdown │ ├── 2018-10-01-coding-challenge-3-snake-game.md │ ├── 2018-10-02-coding-challenge-4-purple-rain.md │ ├── 2018-10-04-coding-challenge-5-space-invaders.md │ ├── 2018-10-06-coding-challenge-6-mitosis.md │ ├── 2018-10-07-coding-challenge-7-solar-system.md │ ├── 2018-10-07-coding-challenge-8-solar-system-3d.md │ ├── 2018-10-07-coding-challenge-9-solar-system-3d-texturized.md │ └── 2018-10-09-coding-challenge-maze-generator.md ├── _sass ├── _base.scss ├── _custom-styling.scss ├── _drop-down-nav.scss ├── _layout-minimal.scss ├── _layout.scss ├── _modal.scss ├── _split-view.scss ├── _syntax-highlighting.scss └── util-classes.scss ├── all └── index.md ├── assets ├── data │ └── chemical_elements.csv ├── images │ ├── default_og_image.png │ ├── home.png │ └── sketchbook.png ├── js │ └── split_view_mgr.js └── screencaps │ └── flash-moving-objects │ ├── screencap-01.gif │ ├── screencap-02.gif │ ├── screencap-03.gif │ └── screencap-04.gif ├── css └── main.scss ├── d3 ├── column_chart │ ├── column_chart.css │ ├── column_chart.js │ └── index.html ├── particles │ ├── index.html │ └── preview.png └── voronoi │ └── index_styled.html ├── flash └── movingObjects │ ├── README.md │ ├── movingBalls_4_119_70.fla │ ├── movingBalls_4_119_70.html │ ├── movingBalls_4_119_70.swf │ ├── movingBallsv4.119.68-Refactor_FixedSettings_Basic.fla │ ├── movingBallsv4.119.68-Refactor_FixedSettings_Basic.html │ ├── movingBallsv4.119.68-Refactor_FixedSettings_Basic.swf │ ├── movingBallsv4.119.68-Refactor_FixedSettings_Basic_fla_to_as.as │ ├── movingBallsv4.119.70-Refactor_Draggable_wZoom_bug.fla │ ├── movingBallsv4.119.70-Refactor_Draggable_wZoom_bug.swf │ ├── movingObjects.swf │ ├── movingObjects_v001.fla │ ├── movingObjects_v001.html │ ├── movingObjects_v001.swf │ └── screenshot-01.png ├── index.md ├── js ├── image_utils.js ├── layout_util_functions.js ├── models │ ├── cell_grid.js │ ├── circle.js │ ├── circuitry │ │ ├── button.js │ │ ├── circuit_base.js │ │ ├── clock_signal.js │ │ ├── flipped_single_pole_double_throw.js │ │ ├── gate.js │ │ ├── input.js │ │ ├── output.js │ │ ├── push_switch.js │ │ ├── single_pole_double_throw.js │ │ ├── single_pole_single_throw.js │ │ └── wire.js │ ├── fields │ │ ├── discrete_field.js │ │ ├── isolines.js │ │ └── terrain.js │ ├── grid_walker.js │ ├── line.js │ ├── line_seg.js │ ├── logic.js │ ├── polygon_2d.js │ ├── quadratic_equation.js │ ├── quadtree.js │ ├── rect.js │ ├── space-colonization │ │ ├── influencer.js │ │ ├── network_root.js │ │ ├── network_segment.js │ │ └── space.js │ ├── vector_2d.js │ └── voronoi_ext.js ├── options_set.js ├── photo-categorizer │ ├── index.html │ └── photo-categorizer.js ├── processingjs_patches │ ├── float.js │ └── pvector.js └── util_functions.js ├── love2d ├── game-of-life │ ├── README.md │ ├── conf.lua │ ├── index.md │ ├── main.lua │ └── screenshot-01.png └── index.md ├── mapbox ├── common │ └── mapbox_utils.js ├── hello-world │ └── index.html ├── layers │ └── index.html └── terrain-interpreter │ ├── css │ └── main.css │ ├── index.html │ └── js │ └── main.js ├── p5js ├── 3d-coord-axes │ ├── 3d_coord_axes.js │ └── index.html ├── 3d-flying-camera │ ├── 3d_flying_camera.js │ └── index.html ├── coding-challenges │ ├── fractal-trees-01 │ │ ├── README.md │ │ ├── app.js │ │ ├── fractal_tree.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── fractal-trees-02 │ │ ├── README.md │ │ ├── app.js │ │ ├── fractal_tree.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── fractal-trees-03 │ │ ├── README.md │ │ ├── apical_meristem.js │ │ ├── app.js │ │ ├── axillary_bud.js │ │ ├── index.md │ │ ├── index_dev.html │ │ ├── leaf.js │ │ ├── root_apical_meristem.js │ │ ├── screenshot-01.png │ │ ├── seasonal_time.js │ │ ├── shoot_apical_meristem.js │ │ ├── tree.js │ │ └── tree_segment.js │ ├── fractal-trees-04 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── l_system.js │ │ ├── l_system_viewer.js │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── fractal-trees-05 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── nutrient.js │ │ │ ├── plant.js │ │ │ ├── root_segment.js │ │ │ ├── root_tip.js │ │ │ └── soil.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ ├── screenshot-02.png │ │ └── screenshot-03.png │ ├── index.md │ ├── lorenz-attractor │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── camera_controller.js │ │ │ ├── lorenz_system.js │ │ │ └── lorenz_system_viewer.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── marching-squares-2 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── cell.js │ │ │ ├── cell_viewer.js │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── marching-squares-3 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── cell_viewer.js │ │ │ ├── discrete_field.js │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── marching-squares │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── cell.js │ │ │ ├── cell_viewer.js │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── maze-generator │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── maze_generator.js │ │ ├── screencapture-01.gif │ │ └── screenshot-01.png │ ├── mitosis │ │ ├── README.md │ │ ├── index.md │ │ ├── local-dev.html │ │ ├── mitosis.js │ │ ├── screenshot-01.png │ │ ├── screenshot-02.png │ │ ├── screenshot-03.png │ │ ├── screenshot-04.png │ │ ├── screenshot-05.png │ │ ├── screenshot-06.png │ │ ├── screenshot-07.png │ │ └── screenshot-08.png │ ├── reaction-diffusion │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── cell.js │ │ │ ├── cell_viewer.js │ │ │ ├── reaction_diffusion.js │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── seven-segment-display │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ ├── seven_segment_display.js │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screencapture-01.gif │ │ └── screenshot-01.png │ ├── snake │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── snake.js │ ├── solar-system-3d-texturized │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ ├── solar_system_3d_texturized.js │ │ └── textures │ │ │ ├── 2k_earth_daymap.jpg │ │ │ ├── 2k_earth_nightmap.jpg │ │ │ ├── 2k_jupiter.jpg │ │ │ ├── 2k_mars.jpg │ │ │ ├── 2k_mercury.jpg │ │ │ ├── 2k_neptune.jpg │ │ │ ├── 2k_saturn.jpg │ │ │ ├── 2k_sun.jpg │ │ │ ├── 2k_uranus.jpg │ │ │ ├── 2k_venus_atmosphere.jpg │ │ │ └── 2k_venus_surface.jpg │ ├── solar-system-3d │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screencapture-01.gif │ │ ├── screenshot-01.png │ │ └── solar_system_3d.js │ ├── solar-system │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── solar_system.js │ ├── space-invaders │ │ ├── README.md │ │ ├── index.md │ │ ├── local-dev.html │ │ ├── screenshot-01.png │ │ └── space_invaders.js │ └── terrain-3d-flyover │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png ├── common │ ├── boundary_bouncer.js │ ├── boundary_wrapper.js │ ├── examples │ │ ├── bezier-2 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── bezier │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── bouncing │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── color-ramp │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ ├── screenshot-01.png │ │ │ ├── screenshot-02-visible-spectrum.png │ │ │ └── screenshot-03-temperature-scale.png │ │ ├── draggable │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── geometry-circle-line │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── geometry-line-to-line │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── geometry-point-to-line │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── geometry-polygon-to-line │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── index.md │ │ ├── layout-options │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── classes │ │ │ │ └── system.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── paisley-2 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── paisley │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── polybezier │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── polygon-perimeter │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── polygon │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── quadtree-2 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── quadtree-3 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── quadtree │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── rotation-between-vectors │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ ├── screenshot-01.png │ │ │ └── screenshot-02.png │ │ ├── shapes-tangents-between-circles │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── space-colonization │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── classes │ │ │ │ └── system.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── teardrops │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── terrain │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── classes │ │ │ │ └── system.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── utils-random-color │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ ├── screenshot-01-red.png │ │ │ ├── screenshot-01.png │ │ │ ├── screenshot-02-orange.png │ │ │ ├── screenshot-03-yellow.png │ │ │ ├── screenshot-04-green.png │ │ │ ├── screenshot-05-blue.png │ │ │ └── screenshot-07-violet.png │ │ ├── voronoi-2 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── voronoi-3 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── voronoi-4 │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── voronoi-in-polygon │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ ├── voronoi-nested │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ │ └── voronoi │ │ │ ├── README.md │ │ │ ├── app.js │ │ │ ├── index.md │ │ │ ├── local_dev.html │ │ │ └── screenshot-01.png │ ├── fields │ │ └── terrain_viewer.js │ ├── geometry │ │ ├── circle_line_intersection.js │ │ └── point_to_line.js │ ├── p5.meta.js │ ├── p5js_color_ramp.js │ ├── p5js_settings.js │ ├── p5js_utils.js │ ├── p5js_voronoi.js │ ├── particle.js │ ├── physics.js │ ├── shapes │ │ ├── bezier_curve.js │ │ ├── circle.js │ │ ├── half_circle_teardrop.js │ │ ├── homing_point.js │ │ ├── line_segment.js │ │ ├── paisley.js │ │ ├── point.js │ │ ├── polybezier.js │ │ ├── polygon.js │ │ ├── rectangle.js │ │ └── triangle.js │ └── ui │ │ ├── button.js │ │ └── ui_set.js ├── crop-fields │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── crop_field_plot.js │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── crowd-simulation │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── crowd_flow_behavior.js │ │ ├── crowd_member.js │ │ ├── doorway.js │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── ecosystem-2 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── ecosystem.js │ │ └── resource.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── ecosystem │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── ecosystem.js │ │ └── resource.js │ ├── docs │ │ ├── screenshot-01.png │ │ └── screenshot-02.png │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── forest-01 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── forest.js │ │ ├── seasonal_time.js │ │ ├── system.js │ │ └── tree.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── forest-02 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── forest.js │ │ ├── seasonal_time.js │ │ ├── system.js │ │ ├── tree.js │ │ └── tree_species.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── forest-fires-02 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── cell_viewer_fire_arrival_time.js │ │ ├── resources.js │ │ ├── scenario_manager.js │ │ ├── system.js │ │ ├── user_interface.js │ │ └── wind.js │ ├── data │ │ └── scenarios.json │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── forest-fires │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── system.js │ │ └── user_interface.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── friezes-2 │ ├── README.md │ ├── app.js │ ├── classes │ │ └── frieze_pen.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── friezes │ ├── README.md │ ├── app.js │ ├── classes │ │ └── frieze_pen.js │ ├── index.md │ ├── local_dev.html │ ├── screencap-01.gif │ ├── screencap-02.gif │ ├── screencap-03.gif │ ├── screencap-04.gif │ ├── screencap-05.gif │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ └── screenshot-04.png ├── genuary │ └── 2021-01-01 │ │ ├── app.js │ │ └── index.html ├── grid-puzzle │ ├── 1 │ │ ├── index.html │ │ └── sketch.js │ ├── 2 │ │ ├── index.html │ │ └── sketch.js │ ├── 3 │ │ ├── index.html │ │ └── sketch.js │ ├── 4 │ │ ├── index.html │ │ └── sketch.js │ ├── README.md │ ├── index.md │ └── screenshot-01.png ├── hello_world │ ├── hello_world.js │ ├── index.html │ └── screenshot-01.png ├── index.md ├── josef-albers-homage-to-a-square │ ├── homeage_to_squares.js │ ├── index.html │ └── screenshot-01.png ├── keyviz │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── key_event.js │ │ ├── key_recorder.js │ │ ├── key_recording_player.js │ │ ├── keyboard.js │ │ ├── keyviz_control_panel.js │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ ├── screencap-01.gif │ ├── screencap-02.gif │ └── screenshot-01.png ├── logic-gates │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── circuit_component.js │ │ ├── system.js │ │ ├── user_interface.js │ │ └── wire_segment.js │ ├── index.md │ ├── local_dev.html │ ├── screencap-01.gif │ ├── screencap-02.gif │ ├── screencap-03.gif │ ├── screencap-04.gif │ └── screenshot-01.png ├── meandering-river-02 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── river.js │ │ ├── river_segment.js │ │ ├── river_source.js │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── meandering-river │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── river.js │ │ ├── river_segment.js │ │ ├── river_source.js │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── nautical-flags-02 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── keyboard_controller.js │ │ ├── nautical_flags.js │ │ ├── nautical_flags_typeset.js │ │ └── user_interface.js │ ├── index.md │ ├── local-dev.html │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ └── screenshot-04.png ├── nautical-flags-03 │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── nautical_flags.js │ │ ├── nautical_flags_typeset.js │ │ ├── ui_screen_base.js │ │ ├── ui_screen_flash_cards.js │ │ ├── ui_screen_quiz_multichoice.js │ │ ├── ui_screen_welcome.js │ │ └── user_interface.js │ ├── index.md │ ├── local-dev.html │ └── screenshot-01.png ├── nautical-flags │ ├── README.md │ ├── app.js │ ├── classes │ │ └── nautical_flags.js │ ├── index.md │ ├── local-dev.html │ ├── screencap-01.gif │ └── screenshot-01.png ├── paisley-01 │ ├── README.md │ ├── app.js │ ├── classes │ │ └── system.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── pulleys │ ├── app.js │ ├── classes │ │ ├── anchor_point.js │ │ ├── massive_object.js │ │ ├── pulley.js │ │ ├── rope.js │ │ ├── rope_segment.js │ │ ├── shape_bouncer.js │ │ ├── system.js │ │ └── winch.js │ └── local_dev.html ├── random │ ├── 001 │ │ ├── README.md │ │ ├── draw_mode_manager.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── random_1.js │ │ └── screenshot-01.png │ ├── 002 │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── random_2.js │ │ └── screenshot-01.png │ ├── 003 │ │ ├── README.md │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── random_3.js │ │ └── screenshot-01.png │ ├── 004 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 005 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 006 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 007 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 008 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 009 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 010 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 011 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 012 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 013 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 014 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 015 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 016 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 017 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 018 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 019 │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 020 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 021 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ ├── 022 │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ └── system.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png │ └── index.md ├── scales │ ├── blendmode │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local-dev.html │ │ └── screenshot-01.png │ ├── events.html │ ├── events.js │ ├── palettelerp │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ │ └── palette_viewer.js │ │ ├── index.md │ │ ├── local-dev.html │ │ └── screenshot-01.png │ └── strokeweight │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ └── screenshot-01.png ├── shader-examples │ ├── falling-sand │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── shaders │ │ │ ├── falling-sand-v1.frag │ │ │ ├── falling-sand-v1b.frag │ │ │ ├── falling-sand-v2.frag │ │ │ └── generic_shader.vert │ ├── game-of-life-shader │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── shaders │ │ │ ├── game-of-life-shader.frag │ │ │ └── generic_shader.vert │ ├── gradient-shader │ │ ├── README.md │ │ ├── app.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── shaders │ │ │ ├── generic_shader.vert │ │ │ └── green-red-yellow-gradient.frag │ └── heat-transfer │ │ ├── README.md │ │ ├── app.js │ │ ├── classes │ │ └── simple_ui.js │ │ ├── index.md │ │ ├── local_dev.html │ │ ├── screenshot-01.png │ │ └── shaders │ │ ├── generic_shader.vert │ │ └── heat-transfer.frag ├── sketch-template │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ └── system.js │ ├── index.md │ └── local_dev.html ├── slippy-map │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── slippy_map.js │ │ ├── system.js │ │ ├── tile.js │ │ ├── tile_renderer.js │ │ └── tile_set.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── snowflake-pen │ ├── README.md │ ├── app.js │ ├── classes │ │ └── snowflake_pen.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── soccer-field │ ├── 01 │ │ ├── index.html │ │ └── sketch.js │ ├── 02 │ │ ├── index.html │ │ └── sketch.js │ ├── 03 │ │ ├── index.html │ │ └── sketch.js │ ├── 04 │ │ ├── field.js │ │ ├── index.html │ │ ├── sketch.js │ │ └── style.css │ ├── 05 │ │ ├── ball.js │ │ ├── field.js │ │ ├── index.html │ │ ├── player.js │ │ ├── sketch.js │ │ └── team.js │ ├── 06 │ │ ├── ball.js │ │ ├── field.js │ │ ├── index.html │ │ ├── player.js │ │ ├── sketch.js │ │ └── team.js │ ├── README.md │ ├── index.md │ └── screenshot-01.png ├── thermal-cells │ ├── README.md │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── grid_view_controller.js │ │ └── simple_ui.js │ ├── index.md │ ├── local_dev.html │ ├── screenshot-01.png │ ├── screenshot-02.png │ └── thermal_cells.js ├── tree-rings │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── cell.js │ │ ├── cell_viewer.js │ │ ├── system.js │ │ └── tree_trunk.js │ ├── index.md │ ├── local_dev.html │ └── screenshot-01.png ├── voronoi-herd │ ├── README.md │ ├── classes │ │ ├── flocking.js │ │ ├── grassland_system.js │ │ ├── herd.js │ │ ├── herd_member.js │ │ └── predator.js │ ├── index.md │ ├── local_dev.html │ ├── screenshot-01.png │ └── voronoi_herd_behavior.js └── water-cycle │ ├── README.md │ ├── app.js │ ├── classes │ ├── cell_viewer.js │ ├── system.js │ ├── terrain_2d.js │ └── weather_cell.js │ ├── index.md │ └── local_dev.html ├── paperjs ├── 10-print │ ├── README.md │ ├── app.js │ ├── index.md │ ├── local-dev.html │ └── screenshot-01.png ├── common │ ├── paper_autocanvas.js │ ├── paperjs_utils.js │ └── particle.js ├── drawing-app │ ├── README.md │ ├── __src_svg │ │ ├── icon_line.svg │ │ ├── icon_pen.svg │ │ └── icon_rect.svg │ ├── app.js │ ├── assets │ │ ├── icon_line.svg │ │ ├── icon_pen.svg │ │ └── icon_rect.svg │ ├── css │ │ └── drawing_app.css │ ├── index.md │ ├── js │ │ └── tools │ │ │ ├── base_tool.js │ │ │ ├── line_tool.js │ │ │ ├── pen_tool.js │ │ │ ├── rect_tool.js │ │ │ └── root_tool.js │ ├── local-dev.html │ └── screenshot-01.png ├── hello-world │ └── index.html ├── index.md ├── interaction-of-color │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── plate_viewer.js │ │ └── plates.js │ ├── index.md │ ├── local-dev.html │ ├── screenshot-01.png │ ├── screenshot-plate-iv-1.png │ ├── screenshot-plate-iv-3.png │ └── screenshot-plate-iv-4.png ├── race-track │ ├── README.md │ ├── app.js │ ├── classes │ │ ├── driver.js │ │ ├── race_car.js │ │ ├── stats_display.js │ │ ├── system.js │ │ ├── track.js │ │ ├── track_pen.js │ │ └── user_interface.js │ ├── index.md │ ├── local-dev.html │ ├── screenshot-01.png │ └── screenshot-02.png └── sketch-template │ ├── README.md │ ├── app.js │ ├── index.md │ └── local-dev.html ├── pixijs ├── common │ └── pixi_settings.mjs ├── hello-world │ ├── README.md │ ├── index.md │ ├── local_dev.html │ └── main.mjs ├── index.md ├── periodic-element │ ├── README.md │ ├── index.md │ ├── local_dev.html │ ├── main.mjs │ ├── modules │ │ ├── element_viewer.mjs │ │ └── system.mjs │ └── screenshot-01.png ├── periodic-table │ ├── README.md │ ├── index.md │ ├── local_dev.html │ ├── main.mjs │ ├── modules │ │ ├── element_viewer.mjs │ │ ├── periodic_table_viewer.mjs │ │ └── system.mjs │ └── screenshot-01.png └── sketch-template │ ├── README.md │ ├── index.md │ ├── local_dev.html │ ├── main.mjs │ ├── modules │ └── system.mjs │ └── screenshot-01.png ├── processing ├── attractors │ ├── attractors.pde │ ├── screenshot-01.png │ └── sketch.properties ├── coding-challenges │ ├── menger_sponge │ │ ├── README.md │ │ ├── index.md │ │ ├── menger_sponge.pde │ │ └── screenshot-01.png │ ├── purple_rain │ │ ├── README.md │ │ ├── index.md │ │ ├── purple_rain.pde │ │ └── screenshot-01.png │ └── starfield │ │ ├── README.md │ │ ├── index.md │ │ ├── screenshot-01.png │ │ └── starfield.pde ├── dodgeball │ ├── README.md │ ├── dodgeball.pde │ ├── index.md │ ├── screenshot-01.png │ └── sketch.properties ├── event_sequencer │ ├── Core_Sketch.pde │ ├── README.md │ ├── Random_Data.pde │ ├── Utils_Color.pde │ ├── Utils_Layout.pde │ ├── Utils_Logging.pde │ ├── Utils_Points.pde │ ├── Utils_View.pde │ ├── event_sequencer.pde │ ├── index.md │ ├── screenshot-01.png │ └── sketch.properties ├── fieldeq │ ├── README.md │ ├── fieldeq.pde │ ├── index.md │ ├── screenshot-01.png │ └── sketch.properties ├── game_of_life │ ├── game_of_life.pde │ ├── index.md │ ├── screenshot-01.png │ └── sketch.properties ├── hexagonal │ ├── README.md │ ├── hexagonal.pde │ ├── index.md │ ├── preview.png │ ├── screenshot-01.png │ └── sketch.properties ├── hockey │ ├── README.md │ ├── hockey.pde │ ├── index.md │ ├── preview.png │ ├── screenshot-01.png │ └── sketch.properties ├── hockey_01 │ ├── Circle.pde │ ├── CircleLineIntersection.pde │ ├── HockeyRink.pde │ ├── HockeyRinkViewer.pde │ ├── Line.pde │ ├── LineSegment.pde │ ├── MouseStick.pde │ ├── Puck.pde │ ├── PuckViewer.pde │ ├── QuadraticEquation.pde │ ├── README.md │ ├── Rect.pde │ ├── Shape.pde │ ├── SvgUtil.pde │ ├── hockey_01.pde │ ├── hockey_rink.svg │ ├── images │ │ ├── rink_debug_corner_collision-01.png │ │ ├── rink_debug_corner_collision-02-probematic.png │ │ ├── rink_debug_corner_collision-03-fixed.png │ │ ├── rink_debug_simple_open_areas-02.png │ │ ├── rink_debug_simple_open_areas-03.png │ │ ├── rink_debug_simple_open_areas.png │ │ ├── rink_debug_unexpected_corner.png │ │ ├── rink_rendered_via_HockeyRinkViewer.png │ │ └── rink_rendered_via_svg.png │ ├── index.md │ ├── screenshot-01.png │ ├── screenshot-02.png │ └── sketch.properties ├── index.md ├── interaction_of_color │ ├── index.md │ ├── interaction_of_color.pde │ ├── screenshot-01.png │ └── sketch.properties ├── keyviz │ ├── README.md │ ├── keyviz.pde │ ├── screenshot-01.png │ └── sketch.properties ├── network │ ├── network.pde │ ├── screenshot-01.png │ └── sketch.properties ├── number_visualizer │ ├── index.md │ ├── number_visualizer.pde │ ├── screenshot-01.png │ └── sketch.properties ├── particles │ ├── index.md │ ├── particles.pde │ └── screenshot-01.png ├── random_001 │ ├── index.md │ ├── random_001.pde │ ├── screenshot-01.png │ └── sketch.properties ├── series_plots │ ├── index.md │ ├── screenshot-01.png │ ├── series_plots.pde │ └── sketch.properties ├── smart_traffic │ ├── index.md │ ├── screenshot-01.png │ ├── sketch.properties │ └── smart_traffic.pde ├── spirals │ ├── README.md │ ├── index.md │ ├── screenshot-01.png │ ├── screenshot-02.png │ ├── screenshot-03.png │ ├── sketch.properties │ └── spirals.pde ├── thermal_cells │ ├── README.md │ ├── index.md │ ├── screenshot-01.png │ ├── sketch.properties │ └── thermal_cells.pde └── three_d_blocks │ ├── index.md │ ├── screenshot-01.png │ ├── sketch.properties │ └── three_d_blocks.pde ├── ruby ├── console-art │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── index.md │ ├── lib │ │ └── sketch.rb │ ├── scratch │ │ ├── colorize.rb │ │ ├── curses.rb │ │ ├── ruby-terminfo.rb │ │ ├── tco.rb │ │ └── vanilla_ruby.rb │ ├── screenshot-01.png │ └── sketches │ │ ├── 10_print.png │ │ ├── 10_print.rb │ │ ├── cascading_hello.png │ │ ├── cascading_hello.rb │ │ ├── color_chart.png │ │ ├── color_chart.rb │ │ ├── hello_world.rb │ │ ├── random_color.png │ │ ├── random_color.rb │ │ ├── striped_string.png │ │ └── striped_string.rb ├── index.md └── sparql │ ├── .ruby-version │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ └── queries │ └── wikidata_ex_elements.rb ├── threejs ├── blocks │ ├── README.md │ ├── index.md │ ├── local_dev.html │ ├── modules │ │ └── main.mjs │ └── screenshot-01.png └── index.md └── vendor ├── dat.gui ├── 0.7.3 │ └── dat.gui.js ├── 0.7.7 │ └── dat.gui.js └── 0.7.9 │ └── dat.gui.min.js ├── gorhill └── rhill-voronoi-core.js ├── inobounce └── 0.2.1 │ └── inobounce.js ├── jakelow ├── hobby_curve.mjs └── vec.mjs ├── jquery-accessible-modal-window-aria ├── jquery-accessible-modal-window-aria.js └── simple-modal.css ├── lil-gui └── 0.20.0 │ └── lil-gui.min.js ├── mapbox └── tilebelt │ └── index.js ├── p5.js ├── 0.7.2 │ └── p5.js ├── 0.9.0 │ ├── addons │ │ └── p5.dom.js │ └── p5.js ├── 1.11.2 │ └── p5.min.js └── 1.3.1 │ ├── addons │ └── p5.sound.js │ └── p5.js ├── p5.voronoi └── p5.voronoi.js ├── papaparse └── 5.5.2 │ └── papaparse.min.js ├── paper.js └── 0.12.3 │ └── paper-core.js └── parc6502__joshforisha └── open_simplex_noise.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/.gitignore -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/404.html -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_layouts/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/all.html -------------------------------------------------------------------------------- /_layouts/category.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/category.html -------------------------------------------------------------------------------- /_layouts/full_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/full_page.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/minimal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/minimal.html -------------------------------------------------------------------------------- /_layouts/redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/redirect.html -------------------------------------------------------------------------------- /_layouts/split_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_layouts/split_view.html -------------------------------------------------------------------------------- /_posts/2020-08-27-flash-gravity-sim.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_posts/2020-08-27-flash-gravity-sim.markdown -------------------------------------------------------------------------------- /_sass/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_base.scss -------------------------------------------------------------------------------- /_sass/_custom-styling.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_custom-styling.scss -------------------------------------------------------------------------------- /_sass/_drop-down-nav.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_drop-down-nav.scss -------------------------------------------------------------------------------- /_sass/_layout-minimal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_layout-minimal.scss -------------------------------------------------------------------------------- /_sass/_layout.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_layout.scss -------------------------------------------------------------------------------- /_sass/_modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_modal.scss -------------------------------------------------------------------------------- /_sass/_split-view.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_split-view.scss -------------------------------------------------------------------------------- /_sass/_syntax-highlighting.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/_syntax-highlighting.scss -------------------------------------------------------------------------------- /_sass/util-classes.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/_sass/util-classes.scss -------------------------------------------------------------------------------- /all/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: all 3 | bh_page_type: category 4 | --- 5 | 6 | -------------------------------------------------------------------------------- /assets/data/chemical_elements.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/assets/data/chemical_elements.csv -------------------------------------------------------------------------------- /assets/images/default_og_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/assets/images/default_og_image.png -------------------------------------------------------------------------------- /assets/images/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/assets/images/home.png -------------------------------------------------------------------------------- /assets/images/sketchbook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/assets/images/sketchbook.png -------------------------------------------------------------------------------- /assets/js/split_view_mgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/assets/js/split_view_mgr.js -------------------------------------------------------------------------------- /css/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/css/main.scss -------------------------------------------------------------------------------- /d3/column_chart/column_chart.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/column_chart/column_chart.css -------------------------------------------------------------------------------- /d3/column_chart/column_chart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/column_chart/column_chart.js -------------------------------------------------------------------------------- /d3/column_chart/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/column_chart/index.html -------------------------------------------------------------------------------- /d3/particles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/particles/index.html -------------------------------------------------------------------------------- /d3/particles/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/particles/preview.png -------------------------------------------------------------------------------- /d3/voronoi/index_styled.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/d3/voronoi/index_styled.html -------------------------------------------------------------------------------- /flash/movingObjects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/README.md -------------------------------------------------------------------------------- /flash/movingObjects/movingBalls_4_119_70.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingBalls_4_119_70.fla -------------------------------------------------------------------------------- /flash/movingObjects/movingBalls_4_119_70.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingBalls_4_119_70.html -------------------------------------------------------------------------------- /flash/movingObjects/movingBalls_4_119_70.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingBalls_4_119_70.swf -------------------------------------------------------------------------------- /flash/movingObjects/movingObjects.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingObjects.swf -------------------------------------------------------------------------------- /flash/movingObjects/movingObjects_v001.fla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingObjects_v001.fla -------------------------------------------------------------------------------- /flash/movingObjects/movingObjects_v001.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingObjects_v001.html -------------------------------------------------------------------------------- /flash/movingObjects/movingObjects_v001.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/movingObjects_v001.swf -------------------------------------------------------------------------------- /flash/movingObjects/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/flash/movingObjects/screenshot-01.png -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/index.md -------------------------------------------------------------------------------- /js/image_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/image_utils.js -------------------------------------------------------------------------------- /js/layout_util_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/layout_util_functions.js -------------------------------------------------------------------------------- /js/models/cell_grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/cell_grid.js -------------------------------------------------------------------------------- /js/models/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circle.js -------------------------------------------------------------------------------- /js/models/circuitry/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/button.js -------------------------------------------------------------------------------- /js/models/circuitry/circuit_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/circuit_base.js -------------------------------------------------------------------------------- /js/models/circuitry/clock_signal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/clock_signal.js -------------------------------------------------------------------------------- /js/models/circuitry/gate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/gate.js -------------------------------------------------------------------------------- /js/models/circuitry/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/input.js -------------------------------------------------------------------------------- /js/models/circuitry/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/output.js -------------------------------------------------------------------------------- /js/models/circuitry/push_switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/push_switch.js -------------------------------------------------------------------------------- /js/models/circuitry/single_pole_double_throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/single_pole_double_throw.js -------------------------------------------------------------------------------- /js/models/circuitry/single_pole_single_throw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/single_pole_single_throw.js -------------------------------------------------------------------------------- /js/models/circuitry/wire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/circuitry/wire.js -------------------------------------------------------------------------------- /js/models/fields/discrete_field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/fields/discrete_field.js -------------------------------------------------------------------------------- /js/models/fields/isolines.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/fields/isolines.js -------------------------------------------------------------------------------- /js/models/fields/terrain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/fields/terrain.js -------------------------------------------------------------------------------- /js/models/grid_walker.js: -------------------------------------------------------------------------------- 1 | grid_walker.js -------------------------------------------------------------------------------- /js/models/line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/line.js -------------------------------------------------------------------------------- /js/models/line_seg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/line_seg.js -------------------------------------------------------------------------------- /js/models/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/logic.js -------------------------------------------------------------------------------- /js/models/polygon_2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/polygon_2d.js -------------------------------------------------------------------------------- /js/models/quadratic_equation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/quadratic_equation.js -------------------------------------------------------------------------------- /js/models/quadtree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/quadtree.js -------------------------------------------------------------------------------- /js/models/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/rect.js -------------------------------------------------------------------------------- /js/models/space-colonization/influencer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/space-colonization/influencer.js -------------------------------------------------------------------------------- /js/models/space-colonization/network_root.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/space-colonization/network_root.js -------------------------------------------------------------------------------- /js/models/space-colonization/network_segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/space-colonization/network_segment.js -------------------------------------------------------------------------------- /js/models/space-colonization/space.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/space-colonization/space.js -------------------------------------------------------------------------------- /js/models/vector_2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/vector_2d.js -------------------------------------------------------------------------------- /js/models/voronoi_ext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/models/voronoi_ext.js -------------------------------------------------------------------------------- /js/options_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/options_set.js -------------------------------------------------------------------------------- /js/photo-categorizer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/photo-categorizer/index.html -------------------------------------------------------------------------------- /js/photo-categorizer/photo-categorizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/photo-categorizer/photo-categorizer.js -------------------------------------------------------------------------------- /js/processingjs_patches/float.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/processingjs_patches/float.js -------------------------------------------------------------------------------- /js/processingjs_patches/pvector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/processingjs_patches/pvector.js -------------------------------------------------------------------------------- /js/util_functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/js/util_functions.js -------------------------------------------------------------------------------- /love2d/game-of-life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/game-of-life/README.md -------------------------------------------------------------------------------- /love2d/game-of-life/conf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/game-of-life/conf.lua -------------------------------------------------------------------------------- /love2d/game-of-life/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/game-of-life/index.md -------------------------------------------------------------------------------- /love2d/game-of-life/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/game-of-life/main.lua -------------------------------------------------------------------------------- /love2d/game-of-life/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/game-of-life/screenshot-01.png -------------------------------------------------------------------------------- /love2d/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/love2d/index.md -------------------------------------------------------------------------------- /mapbox/common/mapbox_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/common/mapbox_utils.js -------------------------------------------------------------------------------- /mapbox/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/hello-world/index.html -------------------------------------------------------------------------------- /mapbox/layers/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/layers/index.html -------------------------------------------------------------------------------- /mapbox/terrain-interpreter/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/terrain-interpreter/css/main.css -------------------------------------------------------------------------------- /mapbox/terrain-interpreter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/terrain-interpreter/index.html -------------------------------------------------------------------------------- /mapbox/terrain-interpreter/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/mapbox/terrain-interpreter/js/main.js -------------------------------------------------------------------------------- /p5js/3d-coord-axes/3d_coord_axes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/3d-coord-axes/3d_coord_axes.js -------------------------------------------------------------------------------- /p5js/3d-coord-axes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/3d-coord-axes/index.html -------------------------------------------------------------------------------- /p5js/3d-flying-camera/3d_flying_camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/3d-flying-camera/3d_flying_camera.js -------------------------------------------------------------------------------- /p5js/3d-flying-camera/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/3d-flying-camera/index.html -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-01/app.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-02/app.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-03/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-03/app.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-03/leaf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-03/leaf.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-03/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-03/tree.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-04/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-04/app.js -------------------------------------------------------------------------------- /p5js/coding-challenges/fractal-trees-05/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/fractal-trees-05/app.js -------------------------------------------------------------------------------- /p5js/coding-challenges/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/index.md -------------------------------------------------------------------------------- /p5js/coding-challenges/mitosis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/mitosis/README.md -------------------------------------------------------------------------------- /p5js/coding-challenges/mitosis/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/mitosis/index.md -------------------------------------------------------------------------------- /p5js/coding-challenges/mitosis/mitosis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/mitosis/mitosis.js -------------------------------------------------------------------------------- /p5js/coding-challenges/snake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/snake/README.md -------------------------------------------------------------------------------- /p5js/coding-challenges/snake/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/snake/index.md -------------------------------------------------------------------------------- /p5js/coding-challenges/snake/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/snake/local_dev.html -------------------------------------------------------------------------------- /p5js/coding-challenges/snake/snake.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/snake/snake.js -------------------------------------------------------------------------------- /p5js/coding-challenges/solar-system/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/coding-challenges/solar-system/index.md -------------------------------------------------------------------------------- /p5js/common/boundary_bouncer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/boundary_bouncer.js -------------------------------------------------------------------------------- /p5js/common/boundary_wrapper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/boundary_wrapper.js -------------------------------------------------------------------------------- /p5js/common/examples/bezier-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier-2/README.md -------------------------------------------------------------------------------- /p5js/common/examples/bezier-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier-2/app.js -------------------------------------------------------------------------------- /p5js/common/examples/bezier-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier-2/index.md -------------------------------------------------------------------------------- /p5js/common/examples/bezier-2/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier-2/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/bezier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier/README.md -------------------------------------------------------------------------------- /p5js/common/examples/bezier/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier/app.js -------------------------------------------------------------------------------- /p5js/common/examples/bezier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier/index.md -------------------------------------------------------------------------------- /p5js/common/examples/bezier/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bezier/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/bouncing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bouncing/README.md -------------------------------------------------------------------------------- /p5js/common/examples/bouncing/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bouncing/app.js -------------------------------------------------------------------------------- /p5js/common/examples/bouncing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bouncing/index.md -------------------------------------------------------------------------------- /p5js/common/examples/bouncing/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/bouncing/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/color-ramp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/color-ramp/README.md -------------------------------------------------------------------------------- /p5js/common/examples/color-ramp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/color-ramp/app.js -------------------------------------------------------------------------------- /p5js/common/examples/color-ramp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/color-ramp/index.md -------------------------------------------------------------------------------- /p5js/common/examples/draggable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/draggable/README.md -------------------------------------------------------------------------------- /p5js/common/examples/draggable/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/draggable/app.js -------------------------------------------------------------------------------- /p5js/common/examples/draggable/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/draggable/index.md -------------------------------------------------------------------------------- /p5js/common/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/index.md -------------------------------------------------------------------------------- /p5js/common/examples/layout-options/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/layout-options/app.js -------------------------------------------------------------------------------- /p5js/common/examples/layout-options/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/layout-options/index.md -------------------------------------------------------------------------------- /p5js/common/examples/paisley-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley-2/README.md -------------------------------------------------------------------------------- /p5js/common/examples/paisley-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley-2/app.js -------------------------------------------------------------------------------- /p5js/common/examples/paisley-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley-2/index.md -------------------------------------------------------------------------------- /p5js/common/examples/paisley/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley/README.md -------------------------------------------------------------------------------- /p5js/common/examples/paisley/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley/app.js -------------------------------------------------------------------------------- /p5js/common/examples/paisley/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley/index.md -------------------------------------------------------------------------------- /p5js/common/examples/paisley/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/paisley/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/polybezier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polybezier/README.md -------------------------------------------------------------------------------- /p5js/common/examples/polybezier/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polybezier/app.js -------------------------------------------------------------------------------- /p5js/common/examples/polybezier/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polybezier/index.md -------------------------------------------------------------------------------- /p5js/common/examples/polygon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polygon/README.md -------------------------------------------------------------------------------- /p5js/common/examples/polygon/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polygon/app.js -------------------------------------------------------------------------------- /p5js/common/examples/polygon/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polygon/index.md -------------------------------------------------------------------------------- /p5js/common/examples/polygon/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/polygon/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-2/README.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-2/app.js -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-2/index.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-3/README.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-3/app.js -------------------------------------------------------------------------------- /p5js/common/examples/quadtree-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree-3/index.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree/README.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree/app.js -------------------------------------------------------------------------------- /p5js/common/examples/quadtree/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree/index.md -------------------------------------------------------------------------------- /p5js/common/examples/quadtree/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/quadtree/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/teardrops/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/teardrops/README.md -------------------------------------------------------------------------------- /p5js/common/examples/teardrops/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/teardrops/app.js -------------------------------------------------------------------------------- /p5js/common/examples/teardrops/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/teardrops/index.md -------------------------------------------------------------------------------- /p5js/common/examples/terrain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/terrain/README.md -------------------------------------------------------------------------------- /p5js/common/examples/terrain/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/terrain/app.js -------------------------------------------------------------------------------- /p5js/common/examples/terrain/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/terrain/index.md -------------------------------------------------------------------------------- /p5js/common/examples/terrain/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/terrain/local_dev.html -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-2/README.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-2/app.js -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-2/index.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-3/README.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-3/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-3/app.js -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-3/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-3/index.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-4/README.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-4/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-4/app.js -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-4/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-4/index.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-nested/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-nested/app.js -------------------------------------------------------------------------------- /p5js/common/examples/voronoi-nested/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi-nested/index.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi/README.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi/app.js -------------------------------------------------------------------------------- /p5js/common/examples/voronoi/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi/index.md -------------------------------------------------------------------------------- /p5js/common/examples/voronoi/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/examples/voronoi/local_dev.html -------------------------------------------------------------------------------- /p5js/common/fields/terrain_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/fields/terrain_viewer.js -------------------------------------------------------------------------------- /p5js/common/geometry/point_to_line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/geometry/point_to_line.js -------------------------------------------------------------------------------- /p5js/common/p5.meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/p5.meta.js -------------------------------------------------------------------------------- /p5js/common/p5js_color_ramp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/p5js_color_ramp.js -------------------------------------------------------------------------------- /p5js/common/p5js_settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/p5js_settings.js -------------------------------------------------------------------------------- /p5js/common/p5js_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/p5js_utils.js -------------------------------------------------------------------------------- /p5js/common/p5js_voronoi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/p5js_voronoi.js -------------------------------------------------------------------------------- /p5js/common/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/particle.js -------------------------------------------------------------------------------- /p5js/common/physics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/physics.js -------------------------------------------------------------------------------- /p5js/common/shapes/bezier_curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/bezier_curve.js -------------------------------------------------------------------------------- /p5js/common/shapes/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/circle.js -------------------------------------------------------------------------------- /p5js/common/shapes/half_circle_teardrop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/half_circle_teardrop.js -------------------------------------------------------------------------------- /p5js/common/shapes/homing_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/homing_point.js -------------------------------------------------------------------------------- /p5js/common/shapes/line_segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/line_segment.js -------------------------------------------------------------------------------- /p5js/common/shapes/paisley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/paisley.js -------------------------------------------------------------------------------- /p5js/common/shapes/point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/point.js -------------------------------------------------------------------------------- /p5js/common/shapes/polybezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/polybezier.js -------------------------------------------------------------------------------- /p5js/common/shapes/polygon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/polygon.js -------------------------------------------------------------------------------- /p5js/common/shapes/rectangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/rectangle.js -------------------------------------------------------------------------------- /p5js/common/shapes/triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/shapes/triangle.js -------------------------------------------------------------------------------- /p5js/common/ui/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/ui/button.js -------------------------------------------------------------------------------- /p5js/common/ui/ui_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/common/ui/ui_set.js -------------------------------------------------------------------------------- /p5js/crop-fields/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/README.md -------------------------------------------------------------------------------- /p5js/crop-fields/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/app.js -------------------------------------------------------------------------------- /p5js/crop-fields/classes/crop_field_plot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/classes/crop_field_plot.js -------------------------------------------------------------------------------- /p5js/crop-fields/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/classes/system.js -------------------------------------------------------------------------------- /p5js/crop-fields/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/index.md -------------------------------------------------------------------------------- /p5js/crop-fields/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/local_dev.html -------------------------------------------------------------------------------- /p5js/crop-fields/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crop-fields/screenshot-01.png -------------------------------------------------------------------------------- /p5js/crowd-simulation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/README.md -------------------------------------------------------------------------------- /p5js/crowd-simulation/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/app.js -------------------------------------------------------------------------------- /p5js/crowd-simulation/classes/doorway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/classes/doorway.js -------------------------------------------------------------------------------- /p5js/crowd-simulation/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/classes/system.js -------------------------------------------------------------------------------- /p5js/crowd-simulation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/index.md -------------------------------------------------------------------------------- /p5js/crowd-simulation/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/local_dev.html -------------------------------------------------------------------------------- /p5js/crowd-simulation/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/crowd-simulation/screenshot-01.png -------------------------------------------------------------------------------- /p5js/ecosystem-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/README.md -------------------------------------------------------------------------------- /p5js/ecosystem-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/app.js -------------------------------------------------------------------------------- /p5js/ecosystem-2/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/classes/cell.js -------------------------------------------------------------------------------- /p5js/ecosystem-2/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/ecosystem-2/classes/ecosystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/classes/ecosystem.js -------------------------------------------------------------------------------- /p5js/ecosystem-2/classes/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/classes/resource.js -------------------------------------------------------------------------------- /p5js/ecosystem-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/index.md -------------------------------------------------------------------------------- /p5js/ecosystem-2/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/local_dev.html -------------------------------------------------------------------------------- /p5js/ecosystem-2/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem-2/screenshot-01.png -------------------------------------------------------------------------------- /p5js/ecosystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/README.md -------------------------------------------------------------------------------- /p5js/ecosystem/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/app.js -------------------------------------------------------------------------------- /p5js/ecosystem/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/classes/cell.js -------------------------------------------------------------------------------- /p5js/ecosystem/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/ecosystem/classes/ecosystem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/classes/ecosystem.js -------------------------------------------------------------------------------- /p5js/ecosystem/classes/resource.js: -------------------------------------------------------------------------------- 1 | class Resource { 2 | } -------------------------------------------------------------------------------- /p5js/ecosystem/docs/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/docs/screenshot-01.png -------------------------------------------------------------------------------- /p5js/ecosystem/docs/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/docs/screenshot-02.png -------------------------------------------------------------------------------- /p5js/ecosystem/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/index.md -------------------------------------------------------------------------------- /p5js/ecosystem/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/local_dev.html -------------------------------------------------------------------------------- /p5js/ecosystem/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/ecosystem/screenshot-01.png -------------------------------------------------------------------------------- /p5js/forest-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/README.md -------------------------------------------------------------------------------- /p5js/forest-01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/app.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/cell.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/forest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/forest.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/seasonal_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/seasonal_time.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/system.js -------------------------------------------------------------------------------- /p5js/forest-01/classes/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/classes/tree.js -------------------------------------------------------------------------------- /p5js/forest-01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/index.md -------------------------------------------------------------------------------- /p5js/forest-01/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/local_dev.html -------------------------------------------------------------------------------- /p5js/forest-01/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-01/screenshot-01.png -------------------------------------------------------------------------------- /p5js/forest-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/README.md -------------------------------------------------------------------------------- /p5js/forest-02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/app.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/cell.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/forest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/forest.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/seasonal_time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/seasonal_time.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/system.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/tree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/tree.js -------------------------------------------------------------------------------- /p5js/forest-02/classes/tree_species.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/classes/tree_species.js -------------------------------------------------------------------------------- /p5js/forest-02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/index.md -------------------------------------------------------------------------------- /p5js/forest-02/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/local_dev.html -------------------------------------------------------------------------------- /p5js/forest-02/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-02/screenshot-01.png -------------------------------------------------------------------------------- /p5js/forest-fires-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/README.md -------------------------------------------------------------------------------- /p5js/forest-fires-02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/app.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/classes/cell.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/classes/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/classes/resources.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/classes/system.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/classes/wind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/classes/wind.js -------------------------------------------------------------------------------- /p5js/forest-fires-02/data/scenarios.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/data/scenarios.json -------------------------------------------------------------------------------- /p5js/forest-fires-02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/index.md -------------------------------------------------------------------------------- /p5js/forest-fires-02/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/local_dev.html -------------------------------------------------------------------------------- /p5js/forest-fires-02/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires-02/screenshot-01.png -------------------------------------------------------------------------------- /p5js/forest-fires/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/README.md -------------------------------------------------------------------------------- /p5js/forest-fires/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/app.js -------------------------------------------------------------------------------- /p5js/forest-fires/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/classes/cell.js -------------------------------------------------------------------------------- /p5js/forest-fires/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/forest-fires/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/classes/system.js -------------------------------------------------------------------------------- /p5js/forest-fires/classes/user_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/classes/user_interface.js -------------------------------------------------------------------------------- /p5js/forest-fires/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/index.md -------------------------------------------------------------------------------- /p5js/forest-fires/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/local_dev.html -------------------------------------------------------------------------------- /p5js/forest-fires/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/forest-fires/screenshot-01.png -------------------------------------------------------------------------------- /p5js/friezes-2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/README.md -------------------------------------------------------------------------------- /p5js/friezes-2/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/app.js -------------------------------------------------------------------------------- /p5js/friezes-2/classes/frieze_pen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/classes/frieze_pen.js -------------------------------------------------------------------------------- /p5js/friezes-2/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/index.md -------------------------------------------------------------------------------- /p5js/friezes-2/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/local_dev.html -------------------------------------------------------------------------------- /p5js/friezes-2/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes-2/screenshot-01.png -------------------------------------------------------------------------------- /p5js/friezes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/README.md -------------------------------------------------------------------------------- /p5js/friezes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/app.js -------------------------------------------------------------------------------- /p5js/friezes/classes/frieze_pen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/classes/frieze_pen.js -------------------------------------------------------------------------------- /p5js/friezes/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/index.md -------------------------------------------------------------------------------- /p5js/friezes/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/local_dev.html -------------------------------------------------------------------------------- /p5js/friezes/screencap-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screencap-01.gif -------------------------------------------------------------------------------- /p5js/friezes/screencap-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screencap-02.gif -------------------------------------------------------------------------------- /p5js/friezes/screencap-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screencap-03.gif -------------------------------------------------------------------------------- /p5js/friezes/screencap-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screencap-04.gif -------------------------------------------------------------------------------- /p5js/friezes/screencap-05.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screencap-05.gif -------------------------------------------------------------------------------- /p5js/friezes/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screenshot-01.png -------------------------------------------------------------------------------- /p5js/friezes/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screenshot-02.png -------------------------------------------------------------------------------- /p5js/friezes/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screenshot-03.png -------------------------------------------------------------------------------- /p5js/friezes/screenshot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/friezes/screenshot-04.png -------------------------------------------------------------------------------- /p5js/genuary/2021-01-01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/genuary/2021-01-01/app.js -------------------------------------------------------------------------------- /p5js/genuary/2021-01-01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/genuary/2021-01-01/index.html -------------------------------------------------------------------------------- /p5js/grid-puzzle/1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/1/index.html -------------------------------------------------------------------------------- /p5js/grid-puzzle/1/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/1/sketch.js -------------------------------------------------------------------------------- /p5js/grid-puzzle/2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/2/index.html -------------------------------------------------------------------------------- /p5js/grid-puzzle/2/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/2/sketch.js -------------------------------------------------------------------------------- /p5js/grid-puzzle/3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/3/index.html -------------------------------------------------------------------------------- /p5js/grid-puzzle/3/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/3/sketch.js -------------------------------------------------------------------------------- /p5js/grid-puzzle/4/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/4/index.html -------------------------------------------------------------------------------- /p5js/grid-puzzle/4/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/4/sketch.js -------------------------------------------------------------------------------- /p5js/grid-puzzle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/README.md -------------------------------------------------------------------------------- /p5js/grid-puzzle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/index.md -------------------------------------------------------------------------------- /p5js/grid-puzzle/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/grid-puzzle/screenshot-01.png -------------------------------------------------------------------------------- /p5js/hello_world/hello_world.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/hello_world/hello_world.js -------------------------------------------------------------------------------- /p5js/hello_world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/hello_world/index.html -------------------------------------------------------------------------------- /p5js/hello_world/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/hello_world/screenshot-01.png -------------------------------------------------------------------------------- /p5js/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/index.md -------------------------------------------------------------------------------- /p5js/keyviz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/README.md -------------------------------------------------------------------------------- /p5js/keyviz/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/app.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/key_event.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/key_event.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/key_recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/key_recorder.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/key_recording_player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/key_recording_player.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/keyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/keyboard.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/keyviz_control_panel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/keyviz_control_panel.js -------------------------------------------------------------------------------- /p5js/keyviz/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/classes/system.js -------------------------------------------------------------------------------- /p5js/keyviz/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/index.md -------------------------------------------------------------------------------- /p5js/keyviz/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/local_dev.html -------------------------------------------------------------------------------- /p5js/keyviz/screencap-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/screencap-01.gif -------------------------------------------------------------------------------- /p5js/keyviz/screencap-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/screencap-02.gif -------------------------------------------------------------------------------- /p5js/keyviz/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/keyviz/screenshot-01.png -------------------------------------------------------------------------------- /p5js/logic-gates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/README.md -------------------------------------------------------------------------------- /p5js/logic-gates/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/app.js -------------------------------------------------------------------------------- /p5js/logic-gates/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/classes/system.js -------------------------------------------------------------------------------- /p5js/logic-gates/classes/user_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/classes/user_interface.js -------------------------------------------------------------------------------- /p5js/logic-gates/classes/wire_segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/classes/wire_segment.js -------------------------------------------------------------------------------- /p5js/logic-gates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/index.md -------------------------------------------------------------------------------- /p5js/logic-gates/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/local_dev.html -------------------------------------------------------------------------------- /p5js/logic-gates/screencap-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/screencap-01.gif -------------------------------------------------------------------------------- /p5js/logic-gates/screencap-02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/screencap-02.gif -------------------------------------------------------------------------------- /p5js/logic-gates/screencap-03.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/screencap-03.gif -------------------------------------------------------------------------------- /p5js/logic-gates/screencap-04.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/screencap-04.gif -------------------------------------------------------------------------------- /p5js/logic-gates/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/logic-gates/screenshot-01.png -------------------------------------------------------------------------------- /p5js/meandering-river-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/README.md -------------------------------------------------------------------------------- /p5js/meandering-river-02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/app.js -------------------------------------------------------------------------------- /p5js/meandering-river-02/classes/river.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/classes/river.js -------------------------------------------------------------------------------- /p5js/meandering-river-02/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/classes/system.js -------------------------------------------------------------------------------- /p5js/meandering-river-02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/index.md -------------------------------------------------------------------------------- /p5js/meandering-river-02/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/local_dev.html -------------------------------------------------------------------------------- /p5js/meandering-river-02/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river-02/screenshot-01.png -------------------------------------------------------------------------------- /p5js/meandering-river/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/README.md -------------------------------------------------------------------------------- /p5js/meandering-river/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/app.js -------------------------------------------------------------------------------- /p5js/meandering-river/classes/river.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/classes/river.js -------------------------------------------------------------------------------- /p5js/meandering-river/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/classes/system.js -------------------------------------------------------------------------------- /p5js/meandering-river/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/index.md -------------------------------------------------------------------------------- /p5js/meandering-river/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/local_dev.html -------------------------------------------------------------------------------- /p5js/meandering-river/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/meandering-river/screenshot-01.png -------------------------------------------------------------------------------- /p5js/nautical-flags-02/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/README.md -------------------------------------------------------------------------------- /p5js/nautical-flags-02/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/app.js -------------------------------------------------------------------------------- /p5js/nautical-flags-02/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/index.md -------------------------------------------------------------------------------- /p5js/nautical-flags-02/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/local-dev.html -------------------------------------------------------------------------------- /p5js/nautical-flags-02/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/screenshot-01.png -------------------------------------------------------------------------------- /p5js/nautical-flags-02/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/screenshot-02.png -------------------------------------------------------------------------------- /p5js/nautical-flags-02/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/screenshot-03.png -------------------------------------------------------------------------------- /p5js/nautical-flags-02/screenshot-04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-02/screenshot-04.png -------------------------------------------------------------------------------- /p5js/nautical-flags-03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-03/README.md -------------------------------------------------------------------------------- /p5js/nautical-flags-03/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-03/app.js -------------------------------------------------------------------------------- /p5js/nautical-flags-03/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-03/index.md -------------------------------------------------------------------------------- /p5js/nautical-flags-03/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-03/local-dev.html -------------------------------------------------------------------------------- /p5js/nautical-flags-03/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags-03/screenshot-01.png -------------------------------------------------------------------------------- /p5js/nautical-flags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/README.md -------------------------------------------------------------------------------- /p5js/nautical-flags/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/app.js -------------------------------------------------------------------------------- /p5js/nautical-flags/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/index.md -------------------------------------------------------------------------------- /p5js/nautical-flags/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/local-dev.html -------------------------------------------------------------------------------- /p5js/nautical-flags/screencap-01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/screencap-01.gif -------------------------------------------------------------------------------- /p5js/nautical-flags/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/nautical-flags/screenshot-01.png -------------------------------------------------------------------------------- /p5js/paisley-01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/README.md -------------------------------------------------------------------------------- /p5js/paisley-01/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/app.js -------------------------------------------------------------------------------- /p5js/paisley-01/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/classes/system.js -------------------------------------------------------------------------------- /p5js/paisley-01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/index.md -------------------------------------------------------------------------------- /p5js/paisley-01/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/local_dev.html -------------------------------------------------------------------------------- /p5js/paisley-01/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/paisley-01/screenshot-01.png -------------------------------------------------------------------------------- /p5js/pulleys/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/app.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/anchor_point.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/anchor_point.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/massive_object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/massive_object.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/pulley.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/pulley.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/rope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/rope.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/rope_segment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/rope_segment.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/shape_bouncer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/shape_bouncer.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/system.js -------------------------------------------------------------------------------- /p5js/pulleys/classes/winch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/classes/winch.js -------------------------------------------------------------------------------- /p5js/pulleys/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/pulleys/local_dev.html -------------------------------------------------------------------------------- /p5js/random/001/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/1/local_dev.html) -------------------------------------------------------------------------------- /p5js/random/001/draw_mode_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/001/draw_mode_manager.js -------------------------------------------------------------------------------- /p5js/random/001/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/001/index.md -------------------------------------------------------------------------------- /p5js/random/001/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/001/local_dev.html -------------------------------------------------------------------------------- /p5js/random/001/random_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/001/random_1.js -------------------------------------------------------------------------------- /p5js/random/001/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/001/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/002/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/002/) -------------------------------------------------------------------------------- /p5js/random/002/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/002/index.md -------------------------------------------------------------------------------- /p5js/random/002/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/002/local_dev.html -------------------------------------------------------------------------------- /p5js/random/002/random_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/002/random_2.js -------------------------------------------------------------------------------- /p5js/random/002/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/002/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/003/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/003/) -------------------------------------------------------------------------------- /p5js/random/003/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/003/index.md -------------------------------------------------------------------------------- /p5js/random/003/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/003/local_dev.html -------------------------------------------------------------------------------- /p5js/random/003/random_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/003/random_3.js -------------------------------------------------------------------------------- /p5js/random/003/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/003/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/004/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/004/) -------------------------------------------------------------------------------- /p5js/random/004/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/004/app.js -------------------------------------------------------------------------------- /p5js/random/004/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/004/index.md -------------------------------------------------------------------------------- /p5js/random/004/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/004/local_dev.html -------------------------------------------------------------------------------- /p5js/random/004/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/004/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/005/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/005/) -------------------------------------------------------------------------------- /p5js/random/005/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/005/app.js -------------------------------------------------------------------------------- /p5js/random/005/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/005/index.md -------------------------------------------------------------------------------- /p5js/random/005/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/005/local_dev.html -------------------------------------------------------------------------------- /p5js/random/005/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/005/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/006/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/006/) -------------------------------------------------------------------------------- /p5js/random/006/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/006/app.js -------------------------------------------------------------------------------- /p5js/random/006/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/006/index.md -------------------------------------------------------------------------------- /p5js/random/006/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/006/local_dev.html -------------------------------------------------------------------------------- /p5js/random/006/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/006/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/007/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/007/) -------------------------------------------------------------------------------- /p5js/random/007/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/007/app.js -------------------------------------------------------------------------------- /p5js/random/007/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/007/index.md -------------------------------------------------------------------------------- /p5js/random/007/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/007/local_dev.html -------------------------------------------------------------------------------- /p5js/random/007/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/007/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/008/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/008/) -------------------------------------------------------------------------------- /p5js/random/008/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/008/app.js -------------------------------------------------------------------------------- /p5js/random/008/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/008/index.md -------------------------------------------------------------------------------- /p5js/random/008/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/008/local_dev.html -------------------------------------------------------------------------------- /p5js/random/008/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/008/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/009/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/009/) -------------------------------------------------------------------------------- /p5js/random/009/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/009/app.js -------------------------------------------------------------------------------- /p5js/random/009/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/009/index.md -------------------------------------------------------------------------------- /p5js/random/009/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/009/local_dev.html -------------------------------------------------------------------------------- /p5js/random/009/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/009/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/010/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/010/) -------------------------------------------------------------------------------- /p5js/random/010/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/010/app.js -------------------------------------------------------------------------------- /p5js/random/010/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/010/index.md -------------------------------------------------------------------------------- /p5js/random/010/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/010/local_dev.html -------------------------------------------------------------------------------- /p5js/random/010/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/010/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/011/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/011/) -------------------------------------------------------------------------------- /p5js/random/011/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/011/app.js -------------------------------------------------------------------------------- /p5js/random/011/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/011/index.md -------------------------------------------------------------------------------- /p5js/random/011/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/011/local_dev.html -------------------------------------------------------------------------------- /p5js/random/011/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/011/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/012/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/012/) -------------------------------------------------------------------------------- /p5js/random/012/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/012/app.js -------------------------------------------------------------------------------- /p5js/random/012/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/012/index.md -------------------------------------------------------------------------------- /p5js/random/012/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/012/local_dev.html -------------------------------------------------------------------------------- /p5js/random/012/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/012/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/013/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/013/) -------------------------------------------------------------------------------- /p5js/random/013/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/013/app.js -------------------------------------------------------------------------------- /p5js/random/013/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/013/index.md -------------------------------------------------------------------------------- /p5js/random/013/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/013/local_dev.html -------------------------------------------------------------------------------- /p5js/random/013/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/013/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/014/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/014/) -------------------------------------------------------------------------------- /p5js/random/014/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/014/app.js -------------------------------------------------------------------------------- /p5js/random/014/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/014/index.md -------------------------------------------------------------------------------- /p5js/random/014/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/014/local_dev.html -------------------------------------------------------------------------------- /p5js/random/014/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/014/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/015/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/015/) -------------------------------------------------------------------------------- /p5js/random/015/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/015/app.js -------------------------------------------------------------------------------- /p5js/random/015/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/015/index.md -------------------------------------------------------------------------------- /p5js/random/015/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/015/local_dev.html -------------------------------------------------------------------------------- /p5js/random/015/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/015/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/016/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/016/) -------------------------------------------------------------------------------- /p5js/random/016/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/016/app.js -------------------------------------------------------------------------------- /p5js/random/016/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/016/index.md -------------------------------------------------------------------------------- /p5js/random/016/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/016/local_dev.html -------------------------------------------------------------------------------- /p5js/random/016/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/016/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/017/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/017/) -------------------------------------------------------------------------------- /p5js/random/017/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/017/app.js -------------------------------------------------------------------------------- /p5js/random/017/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/017/index.md -------------------------------------------------------------------------------- /p5js/random/017/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/017/local_dev.html -------------------------------------------------------------------------------- /p5js/random/017/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/017/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/018/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/018/) -------------------------------------------------------------------------------- /p5js/random/018/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/018/app.js -------------------------------------------------------------------------------- /p5js/random/018/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/018/index.md -------------------------------------------------------------------------------- /p5js/random/018/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/018/local_dev.html -------------------------------------------------------------------------------- /p5js/random/018/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/018/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/019/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/019/) -------------------------------------------------------------------------------- /p5js/random/019/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/019/app.js -------------------------------------------------------------------------------- /p5js/random/019/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/019/index.md -------------------------------------------------------------------------------- /p5js/random/019/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/019/local_dev.html -------------------------------------------------------------------------------- /p5js/random/019/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/019/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/020/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/020/) -------------------------------------------------------------------------------- /p5js/random/020/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/020/app.js -------------------------------------------------------------------------------- /p5js/random/020/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/020/classes/system.js -------------------------------------------------------------------------------- /p5js/random/020/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/020/index.md -------------------------------------------------------------------------------- /p5js/random/020/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/020/local_dev.html -------------------------------------------------------------------------------- /p5js/random/020/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/020/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/021/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/021/) -------------------------------------------------------------------------------- /p5js/random/021/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/021/app.js -------------------------------------------------------------------------------- /p5js/random/021/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/021/classes/system.js -------------------------------------------------------------------------------- /p5js/random/021/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/021/index.md -------------------------------------------------------------------------------- /p5js/random/021/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/021/local_dev.html -------------------------------------------------------------------------------- /p5js/random/021/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/021/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/022/README.md: -------------------------------------------------------------------------------- 1 | [View Live](https://brianhonohan.com/sketchbook/p5js/random/022/) -------------------------------------------------------------------------------- /p5js/random/022/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/022/app.js -------------------------------------------------------------------------------- /p5js/random/022/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/022/classes/system.js -------------------------------------------------------------------------------- /p5js/random/022/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/022/index.md -------------------------------------------------------------------------------- /p5js/random/022/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/022/local_dev.html -------------------------------------------------------------------------------- /p5js/random/022/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/022/screenshot-01.png -------------------------------------------------------------------------------- /p5js/random/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/random/index.md -------------------------------------------------------------------------------- /p5js/scales/blendmode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/blendmode/README.md -------------------------------------------------------------------------------- /p5js/scales/blendmode/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/blendmode/app.js -------------------------------------------------------------------------------- /p5js/scales/blendmode/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/blendmode/index.md -------------------------------------------------------------------------------- /p5js/scales/blendmode/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/blendmode/local-dev.html -------------------------------------------------------------------------------- /p5js/scales/blendmode/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/blendmode/screenshot-01.png -------------------------------------------------------------------------------- /p5js/scales/events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/events.html -------------------------------------------------------------------------------- /p5js/scales/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/events.js -------------------------------------------------------------------------------- /p5js/scales/palettelerp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/palettelerp/README.md -------------------------------------------------------------------------------- /p5js/scales/palettelerp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/palettelerp/app.js -------------------------------------------------------------------------------- /p5js/scales/palettelerp/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/palettelerp/index.md -------------------------------------------------------------------------------- /p5js/scales/palettelerp/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/palettelerp/local-dev.html -------------------------------------------------------------------------------- /p5js/scales/palettelerp/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/palettelerp/screenshot-01.png -------------------------------------------------------------------------------- /p5js/scales/strokeweight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/strokeweight/README.md -------------------------------------------------------------------------------- /p5js/scales/strokeweight/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/strokeweight/app.js -------------------------------------------------------------------------------- /p5js/scales/strokeweight/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/strokeweight/index.md -------------------------------------------------------------------------------- /p5js/scales/strokeweight/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/strokeweight/local_dev.html -------------------------------------------------------------------------------- /p5js/scales/strokeweight/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/scales/strokeweight/screenshot-01.png -------------------------------------------------------------------------------- /p5js/shader-examples/falling-sand/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/falling-sand/README.md -------------------------------------------------------------------------------- /p5js/shader-examples/falling-sand/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/falling-sand/app.js -------------------------------------------------------------------------------- /p5js/shader-examples/falling-sand/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/falling-sand/index.md -------------------------------------------------------------------------------- /p5js/shader-examples/gradient-shader/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/gradient-shader/app.js -------------------------------------------------------------------------------- /p5js/shader-examples/heat-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/heat-transfer/README.md -------------------------------------------------------------------------------- /p5js/shader-examples/heat-transfer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/heat-transfer/app.js -------------------------------------------------------------------------------- /p5js/shader-examples/heat-transfer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/shader-examples/heat-transfer/index.md -------------------------------------------------------------------------------- /p5js/sketch-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/README.md -------------------------------------------------------------------------------- /p5js/sketch-template/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/app.js -------------------------------------------------------------------------------- /p5js/sketch-template/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/classes/cell.js -------------------------------------------------------------------------------- /p5js/sketch-template/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/sketch-template/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/classes/system.js -------------------------------------------------------------------------------- /p5js/sketch-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/index.md -------------------------------------------------------------------------------- /p5js/sketch-template/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/sketch-template/local_dev.html -------------------------------------------------------------------------------- /p5js/slippy-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/README.md -------------------------------------------------------------------------------- /p5js/slippy-map/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/app.js -------------------------------------------------------------------------------- /p5js/slippy-map/classes/slippy_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/classes/slippy_map.js -------------------------------------------------------------------------------- /p5js/slippy-map/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/classes/system.js -------------------------------------------------------------------------------- /p5js/slippy-map/classes/tile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/classes/tile.js -------------------------------------------------------------------------------- /p5js/slippy-map/classes/tile_renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/classes/tile_renderer.js -------------------------------------------------------------------------------- /p5js/slippy-map/classes/tile_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/classes/tile_set.js -------------------------------------------------------------------------------- /p5js/slippy-map/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/index.md -------------------------------------------------------------------------------- /p5js/slippy-map/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/local_dev.html -------------------------------------------------------------------------------- /p5js/slippy-map/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/slippy-map/screenshot-01.png -------------------------------------------------------------------------------- /p5js/snowflake-pen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/README.md -------------------------------------------------------------------------------- /p5js/snowflake-pen/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/app.js -------------------------------------------------------------------------------- /p5js/snowflake-pen/classes/snowflake_pen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/classes/snowflake_pen.js -------------------------------------------------------------------------------- /p5js/snowflake-pen/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/index.md -------------------------------------------------------------------------------- /p5js/snowflake-pen/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/local_dev.html -------------------------------------------------------------------------------- /p5js/snowflake-pen/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/snowflake-pen/screenshot-01.png -------------------------------------------------------------------------------- /p5js/soccer-field/01/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/01/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/01/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/01/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/02/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/02/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/02/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/02/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/03/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/03/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/03/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/03/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/04/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/04/field.js -------------------------------------------------------------------------------- /p5js/soccer-field/04/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/04/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/04/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/04/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/04/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/04/style.css -------------------------------------------------------------------------------- /p5js/soccer-field/05/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/ball.js -------------------------------------------------------------------------------- /p5js/soccer-field/05/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/field.js -------------------------------------------------------------------------------- /p5js/soccer-field/05/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/05/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/player.js -------------------------------------------------------------------------------- /p5js/soccer-field/05/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/05/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/05/team.js -------------------------------------------------------------------------------- /p5js/soccer-field/06/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/ball.js -------------------------------------------------------------------------------- /p5js/soccer-field/06/field.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/field.js -------------------------------------------------------------------------------- /p5js/soccer-field/06/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/index.html -------------------------------------------------------------------------------- /p5js/soccer-field/06/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/player.js -------------------------------------------------------------------------------- /p5js/soccer-field/06/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/sketch.js -------------------------------------------------------------------------------- /p5js/soccer-field/06/team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/06/team.js -------------------------------------------------------------------------------- /p5js/soccer-field/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/README.md -------------------------------------------------------------------------------- /p5js/soccer-field/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/index.md -------------------------------------------------------------------------------- /p5js/soccer-field/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/soccer-field/screenshot-01.png -------------------------------------------------------------------------------- /p5js/thermal-cells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/README.md -------------------------------------------------------------------------------- /p5js/thermal-cells/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/classes/cell.js -------------------------------------------------------------------------------- /p5js/thermal-cells/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/thermal-cells/classes/simple_ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/classes/simple_ui.js -------------------------------------------------------------------------------- /p5js/thermal-cells/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/index.md -------------------------------------------------------------------------------- /p5js/thermal-cells/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/local_dev.html -------------------------------------------------------------------------------- /p5js/thermal-cells/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/screenshot-01.png -------------------------------------------------------------------------------- /p5js/thermal-cells/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/screenshot-02.png -------------------------------------------------------------------------------- /p5js/thermal-cells/thermal_cells.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/thermal-cells/thermal_cells.js -------------------------------------------------------------------------------- /p5js/tree-rings/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/README.md -------------------------------------------------------------------------------- /p5js/tree-rings/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/app.js -------------------------------------------------------------------------------- /p5js/tree-rings/classes/cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/classes/cell.js -------------------------------------------------------------------------------- /p5js/tree-rings/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/tree-rings/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/classes/system.js -------------------------------------------------------------------------------- /p5js/tree-rings/classes/tree_trunk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/classes/tree_trunk.js -------------------------------------------------------------------------------- /p5js/tree-rings/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/index.md -------------------------------------------------------------------------------- /p5js/tree-rings/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/local_dev.html -------------------------------------------------------------------------------- /p5js/tree-rings/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/tree-rings/screenshot-01.png -------------------------------------------------------------------------------- /p5js/voronoi-herd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/README.md -------------------------------------------------------------------------------- /p5js/voronoi-herd/classes/flocking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/classes/flocking.js -------------------------------------------------------------------------------- /p5js/voronoi-herd/classes/herd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/classes/herd.js -------------------------------------------------------------------------------- /p5js/voronoi-herd/classes/herd_member.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/classes/herd_member.js -------------------------------------------------------------------------------- /p5js/voronoi-herd/classes/predator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/classes/predator.js -------------------------------------------------------------------------------- /p5js/voronoi-herd/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/index.md -------------------------------------------------------------------------------- /p5js/voronoi-herd/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/local_dev.html -------------------------------------------------------------------------------- /p5js/voronoi-herd/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/screenshot-01.png -------------------------------------------------------------------------------- /p5js/voronoi-herd/voronoi_herd_behavior.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/voronoi-herd/voronoi_herd_behavior.js -------------------------------------------------------------------------------- /p5js/water-cycle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/README.md -------------------------------------------------------------------------------- /p5js/water-cycle/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/app.js -------------------------------------------------------------------------------- /p5js/water-cycle/classes/cell_viewer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/classes/cell_viewer.js -------------------------------------------------------------------------------- /p5js/water-cycle/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/classes/system.js -------------------------------------------------------------------------------- /p5js/water-cycle/classes/terrain_2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/classes/terrain_2d.js -------------------------------------------------------------------------------- /p5js/water-cycle/classes/weather_cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/classes/weather_cell.js -------------------------------------------------------------------------------- /p5js/water-cycle/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/index.md -------------------------------------------------------------------------------- /p5js/water-cycle/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/p5js/water-cycle/local_dev.html -------------------------------------------------------------------------------- /paperjs/10-print/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/10-print/README.md -------------------------------------------------------------------------------- /paperjs/10-print/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/10-print/app.js -------------------------------------------------------------------------------- /paperjs/10-print/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/10-print/index.md -------------------------------------------------------------------------------- /paperjs/10-print/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/10-print/local-dev.html -------------------------------------------------------------------------------- /paperjs/10-print/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/10-print/screenshot-01.png -------------------------------------------------------------------------------- /paperjs/common/paper_autocanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/common/paper_autocanvas.js -------------------------------------------------------------------------------- /paperjs/common/paperjs_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/common/paperjs_utils.js -------------------------------------------------------------------------------- /paperjs/common/particle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/common/particle.js -------------------------------------------------------------------------------- /paperjs/drawing-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/README.md -------------------------------------------------------------------------------- /paperjs/drawing-app/__src_svg/icon_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/__src_svg/icon_line.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/__src_svg/icon_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/__src_svg/icon_pen.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/__src_svg/icon_rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/__src_svg/icon_rect.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/app.js -------------------------------------------------------------------------------- /paperjs/drawing-app/assets/icon_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/assets/icon_line.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/assets/icon_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/assets/icon_pen.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/assets/icon_rect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/assets/icon_rect.svg -------------------------------------------------------------------------------- /paperjs/drawing-app/css/drawing_app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/css/drawing_app.css -------------------------------------------------------------------------------- /paperjs/drawing-app/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/index.md -------------------------------------------------------------------------------- /paperjs/drawing-app/js/tools/base_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/js/tools/base_tool.js -------------------------------------------------------------------------------- /paperjs/drawing-app/js/tools/line_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/js/tools/line_tool.js -------------------------------------------------------------------------------- /paperjs/drawing-app/js/tools/pen_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/js/tools/pen_tool.js -------------------------------------------------------------------------------- /paperjs/drawing-app/js/tools/rect_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/js/tools/rect_tool.js -------------------------------------------------------------------------------- /paperjs/drawing-app/js/tools/root_tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/js/tools/root_tool.js -------------------------------------------------------------------------------- /paperjs/drawing-app/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/local-dev.html -------------------------------------------------------------------------------- /paperjs/drawing-app/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/drawing-app/screenshot-01.png -------------------------------------------------------------------------------- /paperjs/hello-world/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/hello-world/index.html -------------------------------------------------------------------------------- /paperjs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/index.md -------------------------------------------------------------------------------- /paperjs/interaction-of-color/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/interaction-of-color/README.md -------------------------------------------------------------------------------- /paperjs/interaction-of-color/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/interaction-of-color/app.js -------------------------------------------------------------------------------- /paperjs/interaction-of-color/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/interaction-of-color/index.md -------------------------------------------------------------------------------- /paperjs/interaction-of-color/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/interaction-of-color/local-dev.html -------------------------------------------------------------------------------- /paperjs/race-track/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/README.md -------------------------------------------------------------------------------- /paperjs/race-track/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/app.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/driver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/driver.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/race_car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/race_car.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/stats_display.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/stats_display.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/system.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/track.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/track_pen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/track_pen.js -------------------------------------------------------------------------------- /paperjs/race-track/classes/user_interface.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/classes/user_interface.js -------------------------------------------------------------------------------- /paperjs/race-track/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/index.md -------------------------------------------------------------------------------- /paperjs/race-track/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/local-dev.html -------------------------------------------------------------------------------- /paperjs/race-track/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/screenshot-01.png -------------------------------------------------------------------------------- /paperjs/race-track/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/race-track/screenshot-02.png -------------------------------------------------------------------------------- /paperjs/sketch-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/sketch-template/README.md -------------------------------------------------------------------------------- /paperjs/sketch-template/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/sketch-template/app.js -------------------------------------------------------------------------------- /paperjs/sketch-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/sketch-template/index.md -------------------------------------------------------------------------------- /paperjs/sketch-template/local-dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/paperjs/sketch-template/local-dev.html -------------------------------------------------------------------------------- /pixijs/common/pixi_settings.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/common/pixi_settings.mjs -------------------------------------------------------------------------------- /pixijs/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/hello-world/README.md -------------------------------------------------------------------------------- /pixijs/hello-world/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/hello-world/index.md -------------------------------------------------------------------------------- /pixijs/hello-world/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/hello-world/local_dev.html -------------------------------------------------------------------------------- /pixijs/hello-world/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/hello-world/main.mjs -------------------------------------------------------------------------------- /pixijs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/index.md -------------------------------------------------------------------------------- /pixijs/periodic-element/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/README.md -------------------------------------------------------------------------------- /pixijs/periodic-element/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/index.md -------------------------------------------------------------------------------- /pixijs/periodic-element/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/local_dev.html -------------------------------------------------------------------------------- /pixijs/periodic-element/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/main.mjs -------------------------------------------------------------------------------- /pixijs/periodic-element/modules/system.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/modules/system.mjs -------------------------------------------------------------------------------- /pixijs/periodic-element/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-element/screenshot-01.png -------------------------------------------------------------------------------- /pixijs/periodic-table/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/README.md -------------------------------------------------------------------------------- /pixijs/periodic-table/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/index.md -------------------------------------------------------------------------------- /pixijs/periodic-table/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/local_dev.html -------------------------------------------------------------------------------- /pixijs/periodic-table/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/main.mjs -------------------------------------------------------------------------------- /pixijs/periodic-table/modules/system.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/modules/system.mjs -------------------------------------------------------------------------------- /pixijs/periodic-table/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/periodic-table/screenshot-01.png -------------------------------------------------------------------------------- /pixijs/sketch-template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/README.md -------------------------------------------------------------------------------- /pixijs/sketch-template/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/index.md -------------------------------------------------------------------------------- /pixijs/sketch-template/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/local_dev.html -------------------------------------------------------------------------------- /pixijs/sketch-template/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/main.mjs -------------------------------------------------------------------------------- /pixijs/sketch-template/modules/system.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/modules/system.mjs -------------------------------------------------------------------------------- /pixijs/sketch-template/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/pixijs/sketch-template/screenshot-01.png -------------------------------------------------------------------------------- /processing/attractors/attractors.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/attractors/attractors.pde -------------------------------------------------------------------------------- /processing/attractors/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/attractors/screenshot-01.png -------------------------------------------------------------------------------- /processing/attractors/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/attractors/sketch.properties -------------------------------------------------------------------------------- /processing/dodgeball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/dodgeball/README.md -------------------------------------------------------------------------------- /processing/dodgeball/dodgeball.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/dodgeball/dodgeball.pde -------------------------------------------------------------------------------- /processing/dodgeball/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/dodgeball/index.md -------------------------------------------------------------------------------- /processing/dodgeball/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/dodgeball/screenshot-01.png -------------------------------------------------------------------------------- /processing/dodgeball/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/dodgeball/sketch.properties -------------------------------------------------------------------------------- /processing/event_sequencer/Core_Sketch.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Core_Sketch.pde -------------------------------------------------------------------------------- /processing/event_sequencer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/README.md -------------------------------------------------------------------------------- /processing/event_sequencer/Random_Data.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Random_Data.pde -------------------------------------------------------------------------------- /processing/event_sequencer/Utils_Color.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Utils_Color.pde -------------------------------------------------------------------------------- /processing/event_sequencer/Utils_Layout.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Utils_Layout.pde -------------------------------------------------------------------------------- /processing/event_sequencer/Utils_Logging.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Utils_Logging.pde -------------------------------------------------------------------------------- /processing/event_sequencer/Utils_Points.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Utils_Points.pde -------------------------------------------------------------------------------- /processing/event_sequencer/Utils_View.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/Utils_View.pde -------------------------------------------------------------------------------- /processing/event_sequencer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/index.md -------------------------------------------------------------------------------- /processing/event_sequencer/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/screenshot-01.png -------------------------------------------------------------------------------- /processing/event_sequencer/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/event_sequencer/sketch.properties -------------------------------------------------------------------------------- /processing/fieldeq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/fieldeq/README.md -------------------------------------------------------------------------------- /processing/fieldeq/fieldeq.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/fieldeq/fieldeq.pde -------------------------------------------------------------------------------- /processing/fieldeq/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/fieldeq/index.md -------------------------------------------------------------------------------- /processing/fieldeq/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/fieldeq/screenshot-01.png -------------------------------------------------------------------------------- /processing/fieldeq/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/fieldeq/sketch.properties -------------------------------------------------------------------------------- /processing/game_of_life/game_of_life.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/game_of_life/game_of_life.pde -------------------------------------------------------------------------------- /processing/game_of_life/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/game_of_life/index.md -------------------------------------------------------------------------------- /processing/game_of_life/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/game_of_life/screenshot-01.png -------------------------------------------------------------------------------- /processing/game_of_life/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/game_of_life/sketch.properties -------------------------------------------------------------------------------- /processing/hexagonal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/README.md -------------------------------------------------------------------------------- /processing/hexagonal/hexagonal.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/hexagonal.pde -------------------------------------------------------------------------------- /processing/hexagonal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/index.md -------------------------------------------------------------------------------- /processing/hexagonal/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/preview.png -------------------------------------------------------------------------------- /processing/hexagonal/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/screenshot-01.png -------------------------------------------------------------------------------- /processing/hexagonal/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hexagonal/sketch.properties -------------------------------------------------------------------------------- /processing/hockey/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/README.md -------------------------------------------------------------------------------- /processing/hockey/hockey.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/hockey.pde -------------------------------------------------------------------------------- /processing/hockey/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/index.md -------------------------------------------------------------------------------- /processing/hockey/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/preview.png -------------------------------------------------------------------------------- /processing/hockey/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/screenshot-01.png -------------------------------------------------------------------------------- /processing/hockey/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey/sketch.properties -------------------------------------------------------------------------------- /processing/hockey_01/Circle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/Circle.pde -------------------------------------------------------------------------------- /processing/hockey_01/HockeyRink.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/HockeyRink.pde -------------------------------------------------------------------------------- /processing/hockey_01/HockeyRinkViewer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/HockeyRinkViewer.pde -------------------------------------------------------------------------------- /processing/hockey_01/Line.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/Line.pde -------------------------------------------------------------------------------- /processing/hockey_01/LineSegment.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/LineSegment.pde -------------------------------------------------------------------------------- /processing/hockey_01/MouseStick.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/MouseStick.pde -------------------------------------------------------------------------------- /processing/hockey_01/Puck.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/Puck.pde -------------------------------------------------------------------------------- /processing/hockey_01/PuckViewer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/PuckViewer.pde -------------------------------------------------------------------------------- /processing/hockey_01/QuadraticEquation.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/QuadraticEquation.pde -------------------------------------------------------------------------------- /processing/hockey_01/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/README.md -------------------------------------------------------------------------------- /processing/hockey_01/Rect.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/Rect.pde -------------------------------------------------------------------------------- /processing/hockey_01/Shape.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/Shape.pde -------------------------------------------------------------------------------- /processing/hockey_01/SvgUtil.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/SvgUtil.pde -------------------------------------------------------------------------------- /processing/hockey_01/hockey_01.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/hockey_01.pde -------------------------------------------------------------------------------- /processing/hockey_01/hockey_rink.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/hockey_rink.svg -------------------------------------------------------------------------------- /processing/hockey_01/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/index.md -------------------------------------------------------------------------------- /processing/hockey_01/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/screenshot-01.png -------------------------------------------------------------------------------- /processing/hockey_01/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/screenshot-02.png -------------------------------------------------------------------------------- /processing/hockey_01/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/hockey_01/sketch.properties -------------------------------------------------------------------------------- /processing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/index.md -------------------------------------------------------------------------------- /processing/interaction_of_color/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/interaction_of_color/index.md -------------------------------------------------------------------------------- /processing/keyviz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/keyviz/README.md -------------------------------------------------------------------------------- /processing/keyviz/keyviz.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/keyviz/keyviz.pde -------------------------------------------------------------------------------- /processing/keyviz/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/keyviz/screenshot-01.png -------------------------------------------------------------------------------- /processing/keyviz/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/keyviz/sketch.properties -------------------------------------------------------------------------------- /processing/network/network.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/network/network.pde -------------------------------------------------------------------------------- /processing/network/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/network/screenshot-01.png -------------------------------------------------------------------------------- /processing/network/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/network/sketch.properties -------------------------------------------------------------------------------- /processing/number_visualizer/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/number_visualizer/index.md -------------------------------------------------------------------------------- /processing/particles/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/particles/index.md -------------------------------------------------------------------------------- /processing/particles/particles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/particles/particles.pde -------------------------------------------------------------------------------- /processing/particles/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/particles/screenshot-01.png -------------------------------------------------------------------------------- /processing/random_001/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/random_001/index.md -------------------------------------------------------------------------------- /processing/random_001/random_001.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/random_001/random_001.pde -------------------------------------------------------------------------------- /processing/random_001/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/random_001/screenshot-01.png -------------------------------------------------------------------------------- /processing/random_001/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/random_001/sketch.properties -------------------------------------------------------------------------------- /processing/series_plots/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/series_plots/index.md -------------------------------------------------------------------------------- /processing/series_plots/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/series_plots/screenshot-01.png -------------------------------------------------------------------------------- /processing/series_plots/series_plots.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/series_plots/series_plots.pde -------------------------------------------------------------------------------- /processing/series_plots/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/series_plots/sketch.properties -------------------------------------------------------------------------------- /processing/smart_traffic/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/smart_traffic/index.md -------------------------------------------------------------------------------- /processing/smart_traffic/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/smart_traffic/screenshot-01.png -------------------------------------------------------------------------------- /processing/smart_traffic/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/smart_traffic/sketch.properties -------------------------------------------------------------------------------- /processing/smart_traffic/smart_traffic.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/smart_traffic/smart_traffic.pde -------------------------------------------------------------------------------- /processing/spirals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/README.md -------------------------------------------------------------------------------- /processing/spirals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/index.md -------------------------------------------------------------------------------- /processing/spirals/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/screenshot-01.png -------------------------------------------------------------------------------- /processing/spirals/screenshot-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/screenshot-02.png -------------------------------------------------------------------------------- /processing/spirals/screenshot-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/screenshot-03.png -------------------------------------------------------------------------------- /processing/spirals/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/sketch.properties -------------------------------------------------------------------------------- /processing/spirals/spirals.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/spirals/spirals.pde -------------------------------------------------------------------------------- /processing/thermal_cells/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/thermal_cells/README.md -------------------------------------------------------------------------------- /processing/thermal_cells/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/thermal_cells/index.md -------------------------------------------------------------------------------- /processing/thermal_cells/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/thermal_cells/screenshot-01.png -------------------------------------------------------------------------------- /processing/thermal_cells/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/thermal_cells/sketch.properties -------------------------------------------------------------------------------- /processing/thermal_cells/thermal_cells.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/thermal_cells/thermal_cells.pde -------------------------------------------------------------------------------- /processing/three_d_blocks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/three_d_blocks/index.md -------------------------------------------------------------------------------- /processing/three_d_blocks/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/three_d_blocks/screenshot-01.png -------------------------------------------------------------------------------- /processing/three_d_blocks/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/three_d_blocks/sketch.properties -------------------------------------------------------------------------------- /processing/three_d_blocks/three_d_blocks.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/processing/three_d_blocks/three_d_blocks.pde -------------------------------------------------------------------------------- /ruby/console-art/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /ruby/console-art/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/Gemfile -------------------------------------------------------------------------------- /ruby/console-art/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/Gemfile.lock -------------------------------------------------------------------------------- /ruby/console-art/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/README.md -------------------------------------------------------------------------------- /ruby/console-art/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/index.md -------------------------------------------------------------------------------- /ruby/console-art/lib/sketch.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/lib/sketch.rb -------------------------------------------------------------------------------- /ruby/console-art/scratch/colorize.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/scratch/colorize.rb -------------------------------------------------------------------------------- /ruby/console-art/scratch/curses.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/scratch/curses.rb -------------------------------------------------------------------------------- /ruby/console-art/scratch/ruby-terminfo.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/scratch/ruby-terminfo.rb -------------------------------------------------------------------------------- /ruby/console-art/scratch/tco.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/scratch/tco.rb -------------------------------------------------------------------------------- /ruby/console-art/scratch/vanilla_ruby.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/scratch/vanilla_ruby.rb -------------------------------------------------------------------------------- /ruby/console-art/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/screenshot-01.png -------------------------------------------------------------------------------- /ruby/console-art/sketches/10_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/10_print.png -------------------------------------------------------------------------------- /ruby/console-art/sketches/10_print.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/10_print.rb -------------------------------------------------------------------------------- /ruby/console-art/sketches/cascading_hello.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/cascading_hello.rb -------------------------------------------------------------------------------- /ruby/console-art/sketches/color_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/color_chart.png -------------------------------------------------------------------------------- /ruby/console-art/sketches/color_chart.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/color_chart.rb -------------------------------------------------------------------------------- /ruby/console-art/sketches/hello_world.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/hello_world.rb -------------------------------------------------------------------------------- /ruby/console-art/sketches/random_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/random_color.png -------------------------------------------------------------------------------- /ruby/console-art/sketches/random_color.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/random_color.rb -------------------------------------------------------------------------------- /ruby/console-art/sketches/striped_string.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/striped_string.png -------------------------------------------------------------------------------- /ruby/console-art/sketches/striped_string.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/console-art/sketches/striped_string.rb -------------------------------------------------------------------------------- /ruby/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/index.md -------------------------------------------------------------------------------- /ruby/sparql/.ruby-version: -------------------------------------------------------------------------------- 1 | 2.7.5 2 | -------------------------------------------------------------------------------- /ruby/sparql/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/sparql/Gemfile -------------------------------------------------------------------------------- /ruby/sparql/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/sparql/Gemfile.lock -------------------------------------------------------------------------------- /ruby/sparql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/sparql/README.md -------------------------------------------------------------------------------- /ruby/sparql/queries/wikidata_ex_elements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/ruby/sparql/queries/wikidata_ex_elements.rb -------------------------------------------------------------------------------- /threejs/blocks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/blocks/README.md -------------------------------------------------------------------------------- /threejs/blocks/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/blocks/index.md -------------------------------------------------------------------------------- /threejs/blocks/local_dev.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/blocks/local_dev.html -------------------------------------------------------------------------------- /threejs/blocks/modules/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/blocks/modules/main.mjs -------------------------------------------------------------------------------- /threejs/blocks/screenshot-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/blocks/screenshot-01.png -------------------------------------------------------------------------------- /threejs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/threejs/index.md -------------------------------------------------------------------------------- /vendor/dat.gui/0.7.3/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/dat.gui/0.7.3/dat.gui.js -------------------------------------------------------------------------------- /vendor/dat.gui/0.7.7/dat.gui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/dat.gui/0.7.7/dat.gui.js -------------------------------------------------------------------------------- /vendor/dat.gui/0.7.9/dat.gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/dat.gui/0.7.9/dat.gui.min.js -------------------------------------------------------------------------------- /vendor/gorhill/rhill-voronoi-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/gorhill/rhill-voronoi-core.js -------------------------------------------------------------------------------- /vendor/inobounce/0.2.1/inobounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/inobounce/0.2.1/inobounce.js -------------------------------------------------------------------------------- /vendor/jakelow/hobby_curve.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/jakelow/hobby_curve.mjs -------------------------------------------------------------------------------- /vendor/jakelow/vec.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/jakelow/vec.mjs -------------------------------------------------------------------------------- /vendor/lil-gui/0.20.0/lil-gui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/lil-gui/0.20.0/lil-gui.min.js -------------------------------------------------------------------------------- /vendor/mapbox/tilebelt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/mapbox/tilebelt/index.js -------------------------------------------------------------------------------- /vendor/p5.js/0.7.2/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/0.7.2/p5.js -------------------------------------------------------------------------------- /vendor/p5.js/0.9.0/addons/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/0.9.0/addons/p5.dom.js -------------------------------------------------------------------------------- /vendor/p5.js/0.9.0/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/0.9.0/p5.js -------------------------------------------------------------------------------- /vendor/p5.js/1.11.2/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/1.11.2/p5.min.js -------------------------------------------------------------------------------- /vendor/p5.js/1.3.1/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/1.3.1/addons/p5.sound.js -------------------------------------------------------------------------------- /vendor/p5.js/1.3.1/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.js/1.3.1/p5.js -------------------------------------------------------------------------------- /vendor/p5.voronoi/p5.voronoi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/p5.voronoi/p5.voronoi.js -------------------------------------------------------------------------------- /vendor/papaparse/5.5.2/papaparse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/papaparse/5.5.2/papaparse.min.js -------------------------------------------------------------------------------- /vendor/paper.js/0.12.3/paper-core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brianhonohan/sketchbook/HEAD/vendor/paper.js/0.12.3/paper-core.js --------------------------------------------------------------------------------