├── .gitignore ├── Processing 2.2.1 ├── CA │ ├── CA.pde │ └── sketch.properties ├── IsoSkeletonExample_MOD │ ├── Ball.pde │ ├── IsoSkeletonExample_MOD.pde │ ├── Point.pde │ └── key_bindings.pde ├── PCI_Tests │ └── PCI_Tests.pde ├── ParticleWater │ ├── Ball.pde │ └── ParticleWater.pde ├── PopulationStudy │ ├── Colony.pde │ ├── ColonySystem.pde │ ├── PopulationStudy.pde │ └── sketch.properties ├── Sine │ ├── Sine.pde │ └── sketch.properties ├── SlopeTest │ ├── SlopeTest.pde │ └── sketch.properties ├── Spots │ └── Spots.pde ├── cellSort │ ├── IO.pde │ ├── cellSort.pde │ ├── orion.jpeg │ ├── orion_nebula_complex_wide.jpeg │ └── sketch.properties ├── climate_economies │ ├── climate_economies.pde │ └── input │ │ └── pindex.csv ├── dataViz │ ├── GUI.pde │ ├── dataViz.pde │ └── sketch.properties ├── encode_decode │ ├── Counter.pde │ ├── FlipFlop.pde │ ├── Register.pde │ ├── encode_decode.pde │ └── sketch.properties ├── find_and_replace │ ├── find_and_replace.pde │ └── sketch.properties ├── gaussian_noise_stepped_gradient │ ├── 4_gaussian_stepped_gradient_1024w_1024h_1.5_spread_256_buffer_denimTwill3.psd │ ├── 5_gaussian_stepped_gradient_1024w_1024h_1.5_spread_256_buffer_HerringBone4.psd │ ├── gaussian_noise_stepped_gradient.pde │ └── sketch.properties ├── imageTools │ ├── GUI.pde │ ├── LFO.pde │ ├── imageTools.pde │ └── orion_nebula_complex_wide.jpeg ├── image_displace │ └── image_displace.pde ├── libraries │ ├── ComputationalGeometry │ │ ├── examples │ │ │ ├── IsoContourExample │ │ │ │ └── IsoContourExample.pde │ │ │ ├── IsoSkeletonExample │ │ │ │ └── IsoSkeletonExample.pde │ │ │ ├── IsoSurfaceExample │ │ │ │ └── IsoSurfaceExample.pde │ │ │ └── IsoWrapExample │ │ │ │ └── IsoWrapExample.pde │ │ ├── library.properties │ │ ├── library │ │ │ └── ComputationalGeometry.jar │ │ ├── reference │ │ │ ├── ComputationalGeometry │ │ │ │ ├── IsoContour.html │ │ │ │ ├── IsoSkeleton.html │ │ │ │ ├── IsoSurface.html │ │ │ │ ├── IsoWrap.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-frame.html │ │ │ ├── overview-summary.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── quickhull3d │ │ │ │ ├── InternalErrorException.html │ │ │ │ ├── Point3d.html │ │ │ │ ├── QuickHull3D.html │ │ │ │ ├── QuickHull3DTest.html │ │ │ │ ├── SimpleExample.html │ │ │ │ ├── Vector3d.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ └── src │ │ │ ├── ComputationalGeometry │ │ │ ├── IsoContour.java │ │ │ ├── IsoSkeleton.java │ │ │ ├── IsoSurface.java │ │ │ └── IsoWrap.java │ │ │ └── quickhull3d │ │ │ ├── Face.java │ │ │ ├── FaceList.java │ │ │ ├── HalfEdge.java │ │ │ ├── InternalErrorException.java │ │ │ ├── Point3d.java │ │ │ ├── QhullTest.java │ │ │ ├── QuickHull3D.java │ │ │ ├── QuickHull3DTest.java │ │ │ ├── SimpleExample.java │ │ │ ├── Vector3d.java │ │ │ ├── Vertex.java │ │ │ └── VertexList.java │ ├── controlP5-2.2.5 │ │ ├── controlP5 │ │ │ ├── examples │ │ │ │ ├── controllers │ │ │ │ │ ├── ControlP5accordion │ │ │ │ │ │ └── ControlP5accordion.pde │ │ │ │ │ ├── ControlP5background │ │ │ │ │ │ ├── ControlP5background.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── ControlP5bang │ │ │ │ │ │ └── ControlP5bang.pde │ │ │ │ │ ├── ControlP5button │ │ │ │ │ │ └── ControlP5button.pde │ │ │ │ │ ├── ControlP5buttonBar │ │ │ │ │ │ └── ControlP5buttonBar.pde │ │ │ │ │ ├── ControlP5canvas │ │ │ │ │ │ └── ControlP5canvas.pde │ │ │ │ │ ├── ControlP5chart │ │ │ │ │ │ └── ControlP5chart.pde │ │ │ │ │ ├── ControlP5checkBox │ │ │ │ │ │ └── ControlP5checkBox.pde │ │ │ │ │ ├── ControlP5colorPicker │ │ │ │ │ │ └── ControlP5colorPicker.pde │ │ │ │ │ ├── ControlP5colorWheel │ │ │ │ │ │ └── ControlP5colorWheel.pde │ │ │ │ │ ├── ControlP5controlTimer │ │ │ │ │ │ └── ControlP5controlTimer.pde │ │ │ │ │ ├── ControlP5controllerProperties │ │ │ │ │ │ ├── ControlP5controllerProperties.pde │ │ │ │ │ │ └── hello.properties.json │ │ │ │ │ ├── ControlP5dropdownList │ │ │ │ │ │ └── ControlP5dropdownList.pde │ │ │ │ │ ├── ControlP5group │ │ │ │ │ │ └── ControlP5group.pde │ │ │ │ │ ├── ControlP5icon │ │ │ │ │ │ ├── ControlP5icon.pde │ │ │ │ │ │ └── fontawesome-webfont.ttf │ │ │ │ │ ├── ControlP5knob │ │ │ │ │ │ └── ControlP5knob.pde │ │ │ │ │ ├── ControlP5listBox │ │ │ │ │ │ └── ControlP5listBox.pde │ │ │ │ │ ├── ControlP5matrix │ │ │ │ │ │ └── ControlP5matrix.pde │ │ │ │ │ ├── ControlP5multilist │ │ │ │ │ │ └── ControlP5multiList.pde │ │ │ │ │ ├── ControlP5numberbox │ │ │ │ │ │ └── ControlP5numberbox.pde │ │ │ │ │ ├── ControlP5radioButton │ │ │ │ │ │ └── ControlP5radioButton.pde │ │ │ │ │ ├── ControlP5range │ │ │ │ │ │ └── ControlP5range.pde │ │ │ │ │ ├── ControlP5scrollableList │ │ │ │ │ │ └── ControlP5scrollableList.pde │ │ │ │ │ ├── ControlP5slider │ │ │ │ │ │ └── ControlP5slider.pde │ │ │ │ │ ├── ControlP5slider2D │ │ │ │ │ │ └── ControlP5slider2D.pde │ │ │ │ │ ├── ControlP5tab │ │ │ │ │ │ └── ControlP5tab.pde │ │ │ │ │ ├── ControlP5textarea │ │ │ │ │ │ └── ControlP5textarea.pde │ │ │ │ │ ├── ControlP5textfield │ │ │ │ │ │ └── ControlP5textfield.pde │ │ │ │ │ ├── ControlP5textlabel │ │ │ │ │ │ └── ControlP5textlabel.pde │ │ │ │ │ ├── ControlP5toggle │ │ │ │ │ │ └── ControlP5toggle.pde │ │ │ │ │ ├── ControlP5tooltip │ │ │ │ │ │ └── ControlP5tooltip.pde │ │ │ │ │ └── ControlP5window │ │ │ │ │ │ └── ControlP5window.pde │ │ │ │ ├── experimental │ │ │ │ │ ├── ControlP5CustomMatrix │ │ │ │ │ │ └── ControlP5CustomMatrix.pde │ │ │ │ │ ├── ControlP5MenuList │ │ │ │ │ │ └── ControlP5MenuList.pde │ │ │ │ │ ├── ControlP5SliderList │ │ │ │ │ │ └── ControlP5SliderList.pde │ │ │ │ │ ├── ControlP5editableNumberbox │ │ │ │ │ │ └── ControlP5editableNumberbox.pde │ │ │ │ │ ├── ControlP5graphics │ │ │ │ │ │ └── ControlP5graphics.pde │ │ │ │ │ └── MidiMapper │ │ │ │ │ │ ├── MidiMapper.pde │ │ │ │ │ │ └── MidiSimple.java │ │ │ │ ├── extra │ │ │ │ │ ├── ControlP5AutoDetectFields │ │ │ │ │ │ └── ControlP5AutoDetectFields.pde │ │ │ │ │ ├── ControlP5ControllerInsideClass │ │ │ │ │ │ └── ControlP5ControllerInsideClass.pde │ │ │ │ │ ├── ControlP5canvasDrawIntoCanvas │ │ │ │ │ │ └── ControlP5canvasDrawIntoCanvas.pde │ │ │ │ │ ├── ControlP5chartsCombined │ │ │ │ │ │ └── ControlP5chartsCombined.pde │ │ │ │ │ ├── ControlP5console │ │ │ │ │ │ └── ControlP5console.pde │ │ │ │ │ ├── ControlP5controllerOnTop3D │ │ │ │ │ │ └── ControlP5controllerOnTop3D.pde │ │ │ │ │ ├── ControlP5frame │ │ │ │ │ │ └── ControlP5frame.pde │ │ │ │ │ ├── ControlP5frameRate │ │ │ │ │ │ └── ControlP5frameRate.pde │ │ │ │ │ ├── ControlP5frames │ │ │ │ │ │ └── ControlP5frames.pde │ │ │ │ │ ├── ControlP5groupCanvas │ │ │ │ │ │ └── ControlP5groupCanvas.pde │ │ │ │ │ ├── ControlP5imageButton │ │ │ │ │ │ └── ControlP5imageButton.pde │ │ │ │ │ ├── ControlP5key │ │ │ │ │ │ └── ControlP5key.pde │ │ │ │ │ ├── ControlP5listBoxClear │ │ │ │ │ │ └── ControlP5listBoxClear.pde │ │ │ │ │ ├── ControlP5mouseWheel │ │ │ │ │ │ └── ControlP5mouseWheel.pde │ │ │ │ │ ├── ControlP5pointer │ │ │ │ │ │ └── ControlP5pointer.pde │ │ │ │ │ ├── ControlP5propertiesSets │ │ │ │ │ │ ├── ControlP5propertiesSets.pde │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ └── setA.json │ │ │ │ │ ├── ControlP5renderIntoPGraphics │ │ │ │ │ │ └── ControlP5renderIntoPGraphics.pde │ │ │ │ │ ├── ControlP5style │ │ │ │ │ │ └── ControlP5style.pde │ │ │ │ │ ├── ControlP5textfieldAdvanced │ │ │ │ │ │ └── ControlP5textfieldAdvanced.pde │ │ │ │ │ └── ControlP5withPeasyCam │ │ │ │ │ │ └── ControlP5withPeasyCam.pde │ │ │ │ └── use │ │ │ │ │ ├── ControlP5annotation │ │ │ │ │ └── ControlP5annotation.pde │ │ │ │ │ ├── ControlP5basics │ │ │ │ │ └── ControlP5basics.pde │ │ │ │ │ ├── ControlP5beginEnd │ │ │ │ │ └── ControlP5beginEnd.pde │ │ │ │ │ ├── ControlP5behavior │ │ │ │ │ └── ControlP5behavior.pde │ │ │ │ │ ├── ControlP5bringToFront │ │ │ │ │ └── ControlP5bringToFront.pde │ │ │ │ │ ├── ControlP5callback │ │ │ │ │ └── ControlP5callback.pde │ │ │ │ │ ├── ControlP5controlEvent │ │ │ │ │ └── ControlP5controlEvent.pde │ │ │ │ │ ├── ControlP5controlFont │ │ │ │ │ └── ControlP5controlFont.pde │ │ │ │ │ ├── ControlP5customView │ │ │ │ │ └── ControlP5customView.pde │ │ │ │ │ ├── ControlP5extendController │ │ │ │ │ └── ControlP5extendController.pde │ │ │ │ │ ├── ControlP5listenerForSingleController │ │ │ │ │ └── ControlP5listenerForSingleController.pde │ │ │ │ │ ├── ControlP5mouseover │ │ │ │ │ └── ControlP5mouseover.pde │ │ │ │ │ ├── ControlP5plugTo │ │ │ │ │ └── ControlP5plugTo.pde │ │ │ │ │ ├── ControlP5propertiesCustom │ │ │ │ │ ├── ControlP5propertiesCustom.pde │ │ │ │ │ └── hello.json │ │ │ │ │ ├── ControlP5quick │ │ │ │ │ └── ControlP5quick.pde │ │ │ │ │ ├── ControlP5sliderSetValue │ │ │ │ │ └── ControlP5sliderSetValue.pde │ │ │ │ │ ├── ControlP5snapshot │ │ │ │ │ └── ControlP5snapshot.pde │ │ │ │ │ └── ControlP5workingWithIDs │ │ │ │ │ └── ControlP5workingWithIDs.pde │ │ │ ├── library.properties │ │ │ ├── library │ │ │ │ └── controlP5.jar │ │ │ ├── reference │ │ │ │ ├── allclasses-frame.html │ │ │ │ ├── allclasses-noframe.html │ │ │ │ ├── constant-values.html │ │ │ │ ├── controlP5 │ │ │ │ │ ├── Accordion.html │ │ │ │ │ ├── Background.html │ │ │ │ │ ├── Bang.html │ │ │ │ │ ├── BitFont.html │ │ │ │ │ ├── BoundingBox.html │ │ │ │ │ ├── Button.html │ │ │ │ │ ├── ButtonBar.html │ │ │ │ │ ├── CColor.html │ │ │ │ │ ├── CDrawable.html │ │ │ │ │ ├── CP.html │ │ │ │ │ ├── CallbackEvent.html │ │ │ │ │ ├── CallbackListener.html │ │ │ │ │ ├── Canvas.html │ │ │ │ │ ├── Chart.ChartViewArea.html │ │ │ │ │ ├── Chart.ChartViewBar.html │ │ │ │ │ ├── Chart.ChartViewBarCentered.html │ │ │ │ │ ├── Chart.ChartViewLine.html │ │ │ │ │ ├── Chart.ChartViewPie.html │ │ │ │ │ ├── Chart.html │ │ │ │ │ ├── ChartData.html │ │ │ │ │ ├── ChartDataSet.html │ │ │ │ │ ├── CheckBox.html │ │ │ │ │ ├── ColorPicker.html │ │ │ │ │ ├── ColorWheel.html │ │ │ │ │ ├── ControlBehavior.html │ │ │ │ │ ├── ControlBroadcaster.html │ │ │ │ │ ├── ControlElement.html │ │ │ │ │ ├── ControlEvent.html │ │ │ │ │ ├── ControlFont.html │ │ │ │ │ ├── ControlGroup.html │ │ │ │ │ ├── ControlKey.html │ │ │ │ │ ├── ControlListener.html │ │ │ │ │ ├── ControlP5.html │ │ │ │ │ ├── ControlP5Base.html │ │ │ │ │ ├── ControlP5Constants.html │ │ │ │ │ ├── ControlP5Legacy.html │ │ │ │ │ ├── ControlTimer.html │ │ │ │ │ ├── ControlWindow.Pointer.html │ │ │ │ │ ├── ControlWindow.html │ │ │ │ │ ├── Controller.html │ │ │ │ │ ├── ControllerGroup.html │ │ │ │ │ ├── ControllerInterface.html │ │ │ │ │ ├── ControllerList.html │ │ │ │ │ ├── ControllerPlug.html │ │ │ │ │ ├── ControllerProperties.html │ │ │ │ │ ├── ControllerProperty.html │ │ │ │ │ ├── ControllerStyle.html │ │ │ │ │ ├── ControllerView.html │ │ │ │ │ ├── DropdownList.DropdownListView.html │ │ │ │ │ ├── DropdownList.html │ │ │ │ │ ├── FrameRate.html │ │ │ │ │ ├── Group.html │ │ │ │ │ ├── Icon.html │ │ │ │ │ ├── Knob.html │ │ │ │ │ ├── Label.html │ │ │ │ │ ├── ListBox.ListBoxView.html │ │ │ │ │ ├── ListBox.html │ │ │ │ │ ├── ListBoxItem.html │ │ │ │ │ ├── Matrix.html │ │ │ │ │ ├── MultiList.html │ │ │ │ │ ├── MultiListButton.html │ │ │ │ │ ├── Numberbox.html │ │ │ │ │ ├── Pointer.html │ │ │ │ │ ├── Println.html │ │ │ │ │ ├── Radio.html │ │ │ │ │ ├── RadioButton.html │ │ │ │ │ ├── Range.html │ │ │ │ │ ├── ScrollableList.ScrollableListView.html │ │ │ │ │ ├── ScrollableList.html │ │ │ │ │ ├── Slider.html │ │ │ │ │ ├── Slider2D.html │ │ │ │ │ ├── Spacer.html │ │ │ │ │ ├── Tab.html │ │ │ │ │ ├── Textarea.html │ │ │ │ │ ├── Textfield.InputFilter.html │ │ │ │ │ ├── Textfield.html │ │ │ │ │ ├── Textlabel.html │ │ │ │ │ ├── TickMark.html │ │ │ │ │ ├── Toggle.html │ │ │ │ │ ├── Tooltip.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ ├── help-doc.html │ │ │ │ ├── index-all.html │ │ │ │ ├── index.html │ │ │ │ ├── overview-tree.html │ │ │ │ ├── package-list │ │ │ │ ├── script.js │ │ │ │ ├── serialized-form.html │ │ │ │ └── stylesheet.css │ │ │ └── src │ │ │ │ └── controlP5 │ │ │ │ ├── Accordion.java │ │ │ │ ├── Background.java │ │ │ │ ├── Bang.java │ │ │ │ ├── BitFont.java │ │ │ │ ├── Button.java │ │ │ │ ├── ButtonBar.java │ │ │ │ ├── CColor.java │ │ │ │ ├── CDrawable.java │ │ │ │ ├── CP.java │ │ │ │ ├── CallbackEvent.java │ │ │ │ ├── CallbackListener.java │ │ │ │ ├── Canvas.java │ │ │ │ ├── Chart.java │ │ │ │ ├── ChartData.java │ │ │ │ ├── ChartDataSet.java │ │ │ │ ├── CheckBox.java │ │ │ │ ├── ColorPalette.java │ │ │ │ ├── ColorPicker.java │ │ │ │ ├── ColorWheel.java │ │ │ │ ├── ControlBehavior.java │ │ │ │ ├── ControlBroadcaster.java │ │ │ │ ├── ControlElement.java │ │ │ │ ├── ControlEvent.java │ │ │ │ ├── ControlFont.java │ │ │ │ ├── ControlGroup.java │ │ │ │ ├── ControlKey.java │ │ │ │ ├── ControlListener.java │ │ │ │ ├── ControlP5.java │ │ │ │ ├── ControlP5Base.java │ │ │ │ ├── ControlP5Constants.java │ │ │ │ ├── ControlP5Legacy.java │ │ │ │ ├── ControlTimer.java │ │ │ │ ├── ControlWindow.java │ │ │ │ ├── ControlWindowCanvas.java │ │ │ │ ├── Controller.java │ │ │ │ ├── ControllerAutomator.java │ │ │ │ ├── ControllerDisplay.java │ │ │ │ ├── ControllerGroup.java │ │ │ │ ├── ControllerInterface.java │ │ │ │ ├── ControllerLayout.java │ │ │ │ ├── ControllerLayoutElement.java │ │ │ │ ├── ControllerList.java │ │ │ │ ├── ControllerPlug.java │ │ │ │ ├── ControllerProperties.java │ │ │ │ ├── ControllerProperty.java │ │ │ │ ├── ControllerStyle.java │ │ │ │ ├── ControllerView.java │ │ │ │ ├── DropdownList.java │ │ │ │ ├── FieldChangedListener.java │ │ │ │ ├── FrameRate.java │ │ │ │ ├── Group.java │ │ │ │ ├── Icon.java │ │ │ │ ├── Knob.java │ │ │ │ ├── Label.java │ │ │ │ ├── ListBox.java │ │ │ │ ├── Matrix.java │ │ │ │ ├── MultiList.java │ │ │ │ ├── MultiListButton.java │ │ │ │ ├── MultiListInterface.java │ │ │ │ ├── Numberbox.java │ │ │ │ ├── Pad.java │ │ │ │ ├── Pointer.java │ │ │ │ ├── Println.java │ │ │ │ ├── Radio.java │ │ │ │ ├── RadioButton.java │ │ │ │ ├── Range.java │ │ │ │ ├── ScrollableList.java │ │ │ │ ├── Slider.java │ │ │ │ ├── Slider2D.java │ │ │ │ ├── Spacer.java │ │ │ │ ├── TODO │ │ │ │ ├── Tab.java │ │ │ │ ├── Textarea.java │ │ │ │ ├── Textfield.java │ │ │ │ ├── Textlabel.java │ │ │ │ ├── TickMark.java │ │ │ │ ├── Toggle.java │ │ │ │ ├── Tooltip.java │ │ │ │ ├── changeLog.txt │ │ │ │ └── package.html │ │ └── install_instructions.txt │ ├── hemesh │ │ ├── examples │ │ │ ├── reference │ │ │ │ ├── geom │ │ │ │ │ ├── Apollonius │ │ │ │ │ │ ├── CCC_crossing │ │ │ │ │ │ │ └── CCC_crossing.pde │ │ │ │ │ │ ├── LCC_crossing │ │ │ │ │ │ │ └── LCC_crossing.pde │ │ │ │ │ │ ├── LCC_noncrossing │ │ │ │ │ │ │ └── LCC_noncrossing.pde │ │ │ │ │ │ ├── LLC_nonparallel │ │ │ │ │ │ │ └── LLC_nonparallel.pde │ │ │ │ │ │ ├── LLC_parallel │ │ │ │ │ │ │ └── LLC_parallel.pde │ │ │ │ │ │ ├── LLL_nonparallel │ │ │ │ │ │ │ └── LLL_nonparallel.pde │ │ │ │ │ │ ├── LLL_parallel │ │ │ │ │ │ │ └── LLL_parallel.pde │ │ │ │ │ │ ├── PCC_concentric │ │ │ │ │ │ │ └── PCC_concentric.pde │ │ │ │ │ │ ├── PCC_crossing │ │ │ │ │ │ │ └── PCC_crossing.pde │ │ │ │ │ │ ├── PCC_inside │ │ │ │ │ │ │ └── PCC_inside.pde │ │ │ │ │ │ ├── PCC_outside │ │ │ │ │ │ │ └── PCC_outside.pde │ │ │ │ │ │ ├── PLC_online │ │ │ │ │ │ │ └── PLC_online.pde │ │ │ │ │ │ ├── PLC_tangent │ │ │ │ │ │ │ └── PLC_tangent.pde │ │ │ │ │ │ ├── PLL_nonparallel │ │ │ │ │ │ │ └── PLL_nonparallel.pde │ │ │ │ │ │ ├── PLL_parallel │ │ │ │ │ │ │ └── PLL_parallel.pde │ │ │ │ │ │ ├── PPC_inside │ │ │ │ │ │ │ └── PPC_inside.pde │ │ │ │ │ │ ├── PPC_outside │ │ │ │ │ │ │ └── PPC_outside.pde │ │ │ │ │ │ ├── PPL │ │ │ │ │ │ │ └── PPL.pde │ │ │ │ │ │ └── PPP │ │ │ │ │ │ │ └── PPP.pde │ │ │ │ │ ├── Ref_BoundaryPolygon │ │ │ │ │ │ ├── Ref_BoundaryPolygon.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_BufferPolygon │ │ │ │ │ │ ├── Ref_BufferPolygon.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateInversionPoint │ │ │ │ │ │ ├── Ref_CreateInversionPoint.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateMirrorPoint │ │ │ │ │ │ ├── Ref_CreateMirrorPoint.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePointFromBipolar │ │ │ │ │ │ ├── Ref_CreatePointFromBipolar.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePointFromElliptic │ │ │ │ │ │ ├── Ref_CreatePointFromElliptic.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePointFromHyperbolic │ │ │ │ │ │ ├── Ref_CreatePointFromHyperbolic.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePointFromParabolic │ │ │ │ │ │ ├── Ref_CreatePointFromParabolic.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePointFromPolar │ │ │ │ │ │ ├── Ref_CreatePointFromPolar.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePolygonWithHole │ │ │ │ │ │ ├── Ref_CreatePolygonWithHole.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePolygonWithHoles │ │ │ │ │ │ ├── Ref_CreatePolygonWithHoles.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePrismWithHole │ │ │ │ │ │ ├── Ref_CreatePrismWithHole.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreatePrismWithHoles │ │ │ │ │ │ ├── Ref_CreatePrismWithHoles.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateRegularAntiPrism │ │ │ │ │ │ ├── Ref_CreateRegularAntiPrism.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateRegularPrism │ │ │ │ │ │ ├── Ref_CreateRegularPrism.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateSimplePolygon │ │ │ │ │ │ ├── Ref_CreateSimplePolygon.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_CreateSimplePrism │ │ │ │ │ │ ├── Ref_CreateSimplePrism.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_RibbonPolygon │ │ │ │ │ │ ├── Ref_RibbonPolygon.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── Ref_WB_Delaunay2D │ │ │ │ │ │ └── Ref_WB_Delaunay2D.pde │ │ │ │ │ ├── Ref_WB_Delaunay3D │ │ │ │ │ │ └── Ref_WB_Delaunay3D.pde │ │ │ │ │ ├── Ref_WB_Delaunay4D │ │ │ │ │ │ └── Ref_WB_Delaunay4D.pde │ │ │ │ │ ├── Ref_WB_Voronoi2D │ │ │ │ │ │ └── Ref_WB_Voronoi2D.pde │ │ │ │ │ └── Ref_Zonohedron │ │ │ │ │ │ └── Ref_Zonohedron.pde │ │ │ │ └── hemesh │ │ │ │ │ ├── core │ │ │ │ │ ├── REF_ColorExport │ │ │ │ │ │ ├── REF_ColorExport.pde │ │ │ │ │ │ ├── meshes1 │ │ │ │ │ │ │ └── testfc.wrl │ │ │ │ │ │ ├── meshes10 │ │ │ │ │ │ │ └── testfc.ply │ │ │ │ │ │ ├── meshes2 │ │ │ │ │ │ │ └── testvc.wrl │ │ │ │ │ │ ├── meshes3 │ │ │ │ │ │ │ └── test.wrl │ │ │ │ │ │ ├── meshes4 │ │ │ │ │ │ │ └── test.ply │ │ │ │ │ │ ├── meshes5 │ │ │ │ │ │ │ └── test.stl │ │ │ │ │ │ ├── meshes6 │ │ │ │ │ │ │ ├── test.mtl │ │ │ │ │ │ │ └── test.obj │ │ │ │ │ │ ├── meshes7 │ │ │ │ │ │ │ ├── testfc.mtl │ │ │ │ │ │ │ └── testfc.obj │ │ │ │ │ │ ├── meshes8 │ │ │ │ │ │ │ ├── testvc.mtl │ │ │ │ │ │ │ └── testvc.obj │ │ │ │ │ │ └── meshes9 │ │ │ │ │ │ │ └── testvc.ply │ │ │ │ │ ├── Ref_ColorFace │ │ │ │ │ │ └── Ref_ColorFace.pde │ │ │ │ │ ├── Ref_ColorFaceColorLib │ │ │ │ │ │ └── Ref_ColorFaceColorLib.pde │ │ │ │ │ ├── Ref_ColorFaceNormals │ │ │ │ │ │ └── Ref_ColorFaceNormals.pde │ │ │ │ │ ├── Ref_ColorFaceRandomColorLib │ │ │ │ │ │ └── Ref_ColorFaceRandomColorLib.pde │ │ │ │ │ ├── Ref_ColorFaceTexture │ │ │ │ │ │ └── Ref_ColorFaceTexture.pde │ │ │ │ │ ├── Ref_ColorHalfedge │ │ │ │ │ │ └── Ref_ColorHalfedge.pde │ │ │ │ │ ├── Ref_ColorHalfedgeTexture │ │ │ │ │ │ └── Ref_ColorHalfedgeTexture.pde │ │ │ │ │ ├── Ref_ColorVertex │ │ │ │ │ │ └── Ref_ColorVertex.pde │ │ │ │ │ ├── Ref_ColorVertexColorLib │ │ │ │ │ │ └── Ref_ColorVertexColorLib.pde │ │ │ │ │ ├── Ref_ColorVertexCurvature │ │ │ │ │ │ └── Ref_ColorVertexCurvature.pde │ │ │ │ │ ├── Ref_ColorVertexNormals │ │ │ │ │ │ └── Ref_ColorVertexNormals.pde │ │ │ │ │ ├── Ref_ColorVertexRandomColorLib │ │ │ │ │ │ └── Ref_ColorVertexRandomColorLib.pde │ │ │ │ │ ├── Ref_ColorVertexTexture │ │ │ │ │ │ └── Ref_ColorVertexTexture.pde │ │ │ │ │ ├── Ref_ColorVertexUmbrella │ │ │ │ │ │ └── Ref_ColorVertexUmbrella.pde │ │ │ │ │ ├── Ref_HE_DynamicMesh │ │ │ │ │ │ └── Ref_HE_DynamicMesh.pde │ │ │ │ │ ├── Ref_SelectingEdges │ │ │ │ │ │ └── Ref_SelectingEdges.pde │ │ │ │ │ ├── Ref_SelectingEdges2 │ │ │ │ │ │ └── Ref_SelectingEdges2.pde │ │ │ │ │ ├── Ref_SelectingFaces │ │ │ │ │ │ └── Ref_SelectingFaces.pde │ │ │ │ │ ├── Ref_SelectingFaces2 │ │ │ │ │ │ └── Ref_SelectingFaces2.pde │ │ │ │ │ ├── Ref_SelectingVertices │ │ │ │ │ │ └── Ref_SelectingVertices.pde │ │ │ │ │ ├── Ref_SelectingVertices2 │ │ │ │ │ │ └── Ref_SelectingVertices2.pde │ │ │ │ │ ├── Ref_Texture │ │ │ │ │ │ └── Ref_Texture.pde │ │ │ │ │ └── Ref_TextureBox │ │ │ │ │ │ └── Ref_TextureBox.pde │ │ │ │ │ ├── creators │ │ │ │ │ ├── REF_HEMC_WeairePhelan │ │ │ │ │ │ └── REF_HEMC_WeairePhelan.pde │ │ │ │ │ ├── Ref_HEC_Archimedes │ │ │ │ │ │ └── Ref_HEC_Archimedes.pde │ │ │ │ │ ├── Ref_HEC_Box │ │ │ │ │ │ └── Ref_HEC_Box.pde │ │ │ │ │ ├── Ref_HEC_Cone │ │ │ │ │ │ └── Ref_HEC_Cone.pde │ │ │ │ │ ├── Ref_HEC_ConvexHull │ │ │ │ │ │ └── Ref_HEC_ConvexHull.pde │ │ │ │ │ ├── Ref_HEC_Cube │ │ │ │ │ │ └── Ref_HEC_Cube.pde │ │ │ │ │ ├── Ref_HEC_Cylinder │ │ │ │ │ │ └── Ref_HEC_Cylinder.pde │ │ │ │ │ ├── Ref_HEC_Dodecahedron │ │ │ │ │ │ └── Ref_HEC_Dodecahedron.pde │ │ │ │ │ ├── Ref_HEC_Dual │ │ │ │ │ │ └── Ref_HEC_Dual.pde │ │ │ │ │ ├── Ref_HEC_FromFacelist │ │ │ │ │ │ └── Ref_HEC_FromFacelist.pde │ │ │ │ │ ├── Ref_HEC_FromFrame │ │ │ │ │ │ └── Ref_HEC_FromFrame.pde │ │ │ │ │ ├── Ref_HEC_FromPolygons │ │ │ │ │ │ └── Ref_HEC_FromPolygons.pde │ │ │ │ │ ├── Ref_HEC_FromQuads │ │ │ │ │ │ └── Ref_HEC_FromQuads.pde │ │ │ │ │ ├── Ref_HEC_FromSurface │ │ │ │ │ │ └── Ref_HEC_FromSurface.pde │ │ │ │ │ ├── Ref_HEC_FromTriangles │ │ │ │ │ │ └── Ref_HEC_FromTriangles.pde │ │ │ │ │ ├── Ref_HEC_FromVoronoiCells │ │ │ │ │ │ └── Ref_HEC_FromVoronoiCells.pde │ │ │ │ │ ├── Ref_HEC_Geodesic │ │ │ │ │ │ └── Ref_HEC_Geodesic.pde │ │ │ │ │ ├── Ref_HEC_Grid │ │ │ │ │ │ └── Ref_HEC_Grid.pde │ │ │ │ │ ├── Ref_HEC_Icosahedron │ │ │ │ │ │ └── Ref_HEC_Icosahedron.pde │ │ │ │ │ ├── Ref_HEC_IsoFunction │ │ │ │ │ │ └── Ref_HEC_IsoFunction.pde │ │ │ │ │ ├── Ref_HEC_IsoGrid │ │ │ │ │ │ └── Ref_HEC_IsoGrid.pde │ │ │ │ │ ├── Ref_HEC_IsoSurface │ │ │ │ │ │ └── Ref_HEC_IsoSurface.pde │ │ │ │ │ ├── Ref_HEC_IsoSurfaceSNAP │ │ │ │ │ │ └── Ref_HEC_IsoSurfaceSNAP.pde │ │ │ │ │ ├── Ref_HEC_Johnson │ │ │ │ │ │ └── Ref_HEC_Johnson.pde │ │ │ │ │ ├── Ref_HEC_Octahedron │ │ │ │ │ │ └── Ref_HEC_Octahedron.pde │ │ │ │ │ ├── Ref_HEC_Plato │ │ │ │ │ │ └── Ref_HEC_Plato.pde │ │ │ │ │ ├── Ref_HEC_Polygon │ │ │ │ │ │ └── Ref_HEC_Polygon.pde │ │ │ │ │ ├── Ref_HEC_Sphere │ │ │ │ │ │ └── Ref_HEC_Sphere.pde │ │ │ │ │ ├── Ref_HEC_SuperDuper │ │ │ │ │ │ └── Ref_HEC_SuperDuper.pde │ │ │ │ │ ├── Ref_HEC_SweepTube │ │ │ │ │ │ └── Ref_HEC_SweepTube.pde │ │ │ │ │ ├── Ref_HEC_Tetrahedron │ │ │ │ │ │ └── Ref_HEC_Tetrahedron.pde │ │ │ │ │ ├── Ref_HEC_Torus │ │ │ │ │ │ └── Ref_HEC_Torus.pde │ │ │ │ │ ├── Ref_HEC_UVParametric │ │ │ │ │ │ └── Ref_HEC_UVParametric.pde │ │ │ │ │ ├── Ref_HEMC_Panelizer │ │ │ │ │ │ └── Ref_HEMC_Panelizer.pde │ │ │ │ │ ├── Ref_HEMC_VoronoiCells │ │ │ │ │ │ └── Ref_HEMC_VoronoiCells.pde │ │ │ │ │ └── Ref_HEMC_VoronoiSpheres │ │ │ │ │ │ └── Ref_HEMC_VoronoiSpheres.pde │ │ │ │ │ ├── modifiers │ │ │ │ │ ├── Ref_HEM_Bend │ │ │ │ │ │ └── Ref_HEM_Bend.pde │ │ │ │ │ ├── Ref_HEM_ChamferCorners │ │ │ │ │ │ └── Ref_HEM_ChamferCorners.pde │ │ │ │ │ ├── Ref_HEM_ChamferEdges │ │ │ │ │ │ └── Ref_HEM_ChamferEdges.pde │ │ │ │ │ ├── Ref_HEM_Diagrid │ │ │ │ │ │ └── Ref_HEM_Diagrid.pde │ │ │ │ │ ├── Ref_HEM_Extrude │ │ │ │ │ │ └── Ref_HEM_Extrude.pde │ │ │ │ │ ├── Ref_HEM_Lattice │ │ │ │ │ │ └── Ref_HEM_Lattice.pde │ │ │ │ │ ├── Ref_HEM_Mirror │ │ │ │ │ │ └── Ref_HEM_Mirror.pde │ │ │ │ │ ├── Ref_HEM_MultiSlice │ │ │ │ │ │ └── Ref_HEM_MultiSlice.pde │ │ │ │ │ ├── Ref_HEM_MultiSliceSurface │ │ │ │ │ │ └── Ref_HEM_MultiSliceSurface.pde │ │ │ │ │ ├── Ref_HEM_Noise │ │ │ │ │ │ └── Ref_HEM_Noise.pde │ │ │ │ │ ├── Ref_HEM_Skew │ │ │ │ │ │ └── Ref_HEM_Skew.pde │ │ │ │ │ ├── Ref_HEM_Slice │ │ │ │ │ │ └── Ref_HEM_Slice.pde │ │ │ │ │ ├── Ref_HEM_SliceSurface │ │ │ │ │ │ └── Ref_HEM_SliceSurface.pde │ │ │ │ │ ├── Ref_HEM_SliceSurfaceWIthPath │ │ │ │ │ │ └── Ref_HEM_SliceSurfaceWIthPath.pde │ │ │ │ │ ├── Ref_HEM_Smooth │ │ │ │ │ │ └── Ref_HEM_Smooth.pde │ │ │ │ │ ├── Ref_HEM_SmoothInset │ │ │ │ │ │ └── Ref_HEM_SmoothInset.pde │ │ │ │ │ ├── Ref_HEM_SphereInversion │ │ │ │ │ │ └── Ref_HEM_SphereInversion.pde │ │ │ │ │ ├── Ref_HEM_Spherify │ │ │ │ │ │ └── Ref_HEM_Spherify.pde │ │ │ │ │ ├── Ref_HEM_Stretch │ │ │ │ │ │ └── Ref_HEM_Stretch.pde │ │ │ │ │ ├── Ref_HEM_Twist │ │ │ │ │ │ └── Ref_HEM_Twist.pde │ │ │ │ │ ├── Ref_HEM_VertexExpand │ │ │ │ │ │ └── Ref_HEM_VertexExpand.pde │ │ │ │ │ ├── Ref_HEM_Wireframe │ │ │ │ │ │ └── Ref_HEM_Wireframe.pde │ │ │ │ │ └── Ref_SplitFaces │ │ │ │ │ │ └── Ref_SplitFaces.pde │ │ │ │ │ ├── simplifiers │ │ │ │ │ ├── Ref_HES_TriDec │ │ │ │ │ │ └── Ref_HES_TriDec.pde │ │ │ │ │ └── Ref_HES_TriDec_Selected │ │ │ │ │ │ └── Ref_HES_TriDec_Selected.pde │ │ │ │ │ └── subdividors │ │ │ │ │ ├── Ref_HES_CatmullClark │ │ │ │ │ └── Ref_HES_CatmullClark.pde │ │ │ │ │ ├── Ref_HES_DooSabin │ │ │ │ │ └── Ref_HES_DooSabin.pde │ │ │ │ │ ├── Ref_HES_Planar │ │ │ │ │ └── Ref_HES_Planar.pde │ │ │ │ │ ├── Ref_HES_PlanarMidEdge │ │ │ │ │ └── Ref_HES_PlanarMidEdge.pde │ │ │ │ │ └── Ref_HES_Smooth │ │ │ │ │ └── Ref_HES_Smooth.pde │ │ │ ├── spielerei │ │ │ │ ├── Collapse │ │ │ │ │ └── Collapse.pde │ │ │ │ ├── ComplexSlice │ │ │ │ │ └── ComplexSlice.pde │ │ │ │ ├── Deconstruct │ │ │ │ │ └── Deconstruct.pde │ │ │ │ ├── HLPFJ_2014 │ │ │ │ │ └── HLPFJ_2014.pde │ │ │ │ ├── Huh_Mesh │ │ │ │ │ ├── Huh_Mesh.pde │ │ │ │ │ └── data │ │ │ │ │ │ ├── african-female-old.target │ │ │ │ │ │ ├── base.obj │ │ │ │ │ │ ├── caucasian-male-baby.target │ │ │ │ │ │ ├── female-young-minmuscle-maxweight-maxcup-minfirmness.target │ │ │ │ │ │ └── stomach-pregnant-incr.target │ │ │ │ ├── MushroomMushroom │ │ │ │ │ └── MushroomMushroom.pde │ │ │ │ ├── NurbsGrid │ │ │ │ │ └── NurbsGrid.pde │ │ │ │ ├── PlanarIntersection │ │ │ │ │ └── PlanarIntersection.pde │ │ │ │ ├── Pulsar │ │ │ │ │ ├── Pulsar.pde │ │ │ │ │ └── sketch.properties │ │ │ │ ├── Sponge │ │ │ │ │ └── Sponge.pde │ │ │ │ ├── SprayNozzle │ │ │ │ │ └── SprayNozzle.pde │ │ │ │ ├── TetraMass │ │ │ │ │ ├── Node.pde │ │ │ │ │ └── TetraMass.pde │ │ │ │ ├── TwinIso │ │ │ │ │ └── TwinIso.pde │ │ │ │ └── VoronoiOnSphere │ │ │ │ │ └── VoronoiOnSphere.pde │ │ │ └── tutorial │ │ │ │ ├── Accessing_Mesh_Elements │ │ │ │ └── Accessing_Mesh_Elements.pde │ │ │ │ ├── Halfedge │ │ │ │ └── Halfedge.pde │ │ │ │ ├── Tut001_Mesh_Creation │ │ │ │ └── Tut001_Mesh_Creation.pde │ │ │ │ ├── Tut002_Mesh_Modifier │ │ │ │ └── Tut002_Mesh_Modifier.pde │ │ │ │ ├── Tut003_Mesh_Subdividor │ │ │ │ └── Tut003_Mesh_Subdividor.pde │ │ │ │ ├── Tut004_Mesh_Saving │ │ │ │ ├── Tut004_Mesh_Saving.pde │ │ │ │ ├── box.binhemesh │ │ │ │ ├── box.hemesh │ │ │ │ ├── box.mtl │ │ │ │ ├── box.obj │ │ │ │ ├── box.stl │ │ │ │ └── box.txt │ │ │ │ ├── Tut005_Custom_Creation │ │ │ │ └── Tut005_Custom_Creation.pde │ │ │ │ ├── Tut006_Mesh_Selection │ │ │ │ └── Tut006_Mesh_Selection.pde │ │ │ │ ├── Tut007_Mesh_Selection │ │ │ │ └── Tut007_Mesh_Selection.pde │ │ │ │ └── Tut008_Custom_Modifier │ │ │ │ └── Tut008_Custom_Modifier.pde │ │ ├── library.properties │ │ ├── library │ │ │ ├── hemesh-external.jar │ │ │ ├── hemesh.jar │ │ │ ├── javolution-6.1.0.jar │ │ │ ├── jts.jar │ │ │ └── trove-3.1a1.jar │ │ └── reference │ │ │ └── html │ │ │ ├── _h_e___dynamic_mesh_8java.html │ │ │ ├── _h_e___edge_iterator_8java.html │ │ │ ├── _h_e___element_8java.html │ │ │ ├── _h_e___face_8java.html │ │ │ ├── _h_e___face_edge_circulator_8java.html │ │ │ ├── _h_e___face_face_circulator_8java.html │ │ │ ├── _h_e___face_halfedge_inner_circulator_8java.html │ │ │ ├── _h_e___face_halfedge_outer_circulator_8java.html │ │ │ ├── _h_e___face_intersection_8java.html │ │ │ ├── _h_e___face_iterator_8java.html │ │ │ ├── _h_e___face_vertex_circulator_8java.html │ │ │ ├── _h_e___halfedge_8java.html │ │ │ ├── _h_e___halfedge_iterator_8java.html │ │ │ ├── _h_e___intersection_8java.html │ │ │ ├── _h_e___machine_8java.html │ │ │ ├── _h_e___mesh_8java.html │ │ │ ├── _h_e___mesh_structure_8java.html │ │ │ ├── _h_e___path_8java.html │ │ │ ├── _h_e___path_edge_iterator_8java.html │ │ │ ├── _h_e___path_face_inner_iterator_8java.html │ │ │ ├── _h_e___path_face_outer_iterator_8java.html │ │ │ ├── _h_e___path_halfedge_8java.html │ │ │ ├── _h_e___path_halfedge_inner_iterator_8java.html │ │ │ ├── _h_e___path_halfedge_outer_iterator_8java.html │ │ │ ├── _h_e___path_vertex_iterator_8java.html │ │ │ ├── _h_e___r_a_s_8java.html │ │ │ ├── _h_e___r_a_s_javolution_8java.html │ │ │ ├── _h_e___r_a_s_trove_8java.html │ │ │ ├── _h_e___selection_8java.html │ │ │ ├── _h_e___texture_coordinate_8java.html │ │ │ ├── _h_e___vertex_8java.html │ │ │ ├── _h_e___vertex_edge_circulator_8java.html │ │ │ ├── _h_e___vertex_face_circulator_8java.html │ │ │ ├── _h_e___vertex_halfedge_in_circulator_8java.html │ │ │ ├── _h_e___vertex_halfedge_out_circulator_8java.html │ │ │ ├── _h_e___vertex_iterator_8java.html │ │ │ ├── _h_e___vertex_vertex_circulator_8java.html │ │ │ ├── _h_e_c___alpha_shape_8java.html │ │ │ ├── _h_e_c___archimedes_8java.html │ │ │ ├── _h_e_c___beethoven_8java.html │ │ │ ├── _h_e_c___box_8java.html │ │ │ ├── _h_e_c___cone_8java.html │ │ │ ├── _h_e_c___convex_hull_8java.html │ │ │ ├── _h_e_c___copy_8java.html │ │ │ ├── _h_e_c___creator_8java.html │ │ │ ├── _h_e_c___cube_8java.html │ │ │ ├── _h_e_c___cylinder_8java.html │ │ │ ├── _h_e_c___data_cylinder_8java.html │ │ │ ├── _h_e_c___dodecahedron_8java.html │ │ │ ├── _h_e_c___dual_8java.html │ │ │ ├── _h_e_c___ellipsoid_8java.html │ │ │ ├── _h_e_c___from3ds_file_8java.html │ │ │ ├── _h_e_c___from_binary_hemesh_file_8java.html │ │ │ ├── _h_e_c___from_binary_s_t_l_file_8java.html │ │ │ ├── _h_e_c___from_facelist_8java.html │ │ │ ├── _h_e_c___from_frame_8java.html │ │ │ ├── _h_e_c___from_hemesh_file_8java.html │ │ │ ├── _h_e_c___from_mesh_8java.html │ │ │ ├── _h_e_c___from_o_b_j_file_8java.html │ │ │ ├── _h_e_c___from_obj_file_8java.html │ │ │ ├── _h_e_c___from_polygons_8java.html │ │ │ ├── _h_e_c___from_quads_8java.html │ │ │ ├── _h_e_c___from_simple_mesh_file_8java.html │ │ │ ├── _h_e_c___from_surface_8java.html │ │ │ ├── _h_e_c___from_triangles_8java.html │ │ │ ├── _h_e_c___from_voronoi_cells_8java.html │ │ │ ├── _h_e_c___geodesic_8java.html │ │ │ ├── _h_e_c___grid_8java.html │ │ │ ├── _h_e_c___icosahedron_8java.html │ │ │ ├── _h_e_c___iso_function_8java.html │ │ │ ├── _h_e_c___iso_grid_8java.html │ │ │ ├── _h_e_c___iso_surface_8java.html │ │ │ ├── _h_e_c___iso_surface_n_e_p_8java.html │ │ │ ├── _h_e_c___iso_surface_s_n_a_p_8java.html │ │ │ ├── _h_e_c___iso_surface_v_o_l_8java.html │ │ │ ├── _h_e_c___johnson_8java.html │ │ │ ├── _h_e_c___octahedron_8java.html │ │ │ ├── _h_e_c___plato_8java.html │ │ │ ├── _h_e_c___polygon_8java.html │ │ │ ├── _h_e_c___prism_8java.html │ │ │ ├── _h_e_c___revolve_polygon_8java.html │ │ │ ├── _h_e_c___sea_shell_8java.html │ │ │ ├── _h_e_c___shrink_wrap_8java.html │ │ │ ├── _h_e_c___sphere_8java.html │ │ │ ├── _h_e_c___super_duper_8java.html │ │ │ ├── _h_e_c___sweep_tube_8java.html │ │ │ ├── _h_e_c___tetrahedron_8java.html │ │ │ ├── _h_e_c___torus_8java.html │ │ │ ├── _h_e_c___tube_8java.html │ │ │ ├── _h_e_c___tube_segment_8java.html │ │ │ ├── _h_e_c___u_v_parametric_8java.html │ │ │ ├── _h_e_c___voronoi_cell_8java.html │ │ │ ├── _h_e_c___voronoi_sphere_8java.html │ │ │ ├── _h_e_m___bend_8java.html │ │ │ ├── _h_e_m___cap_holes_8java.html │ │ │ ├── _h_e_m___center_split_8java.html │ │ │ ├── _h_e_m___center_split_hole_8java.html │ │ │ ├── _h_e_m___chamfer_corners_8java.html │ │ │ ├── _h_e_m___chamfer_edges_8java.html │ │ │ ├── _h_e_m___clean_8java.html │ │ │ ├── _h_e_m___crocodile_8java.html │ │ │ ├── _h_e_m___diagrid_8java.html │ │ │ ├── _h_e_m___do_nothing_8java.html │ │ │ ├── _h_e_m___equalize_valence_8java.html │ │ │ ├── _h_e_m___extrude_8java.html │ │ │ ├── _h_e_m___face_expand_8java.html │ │ │ ├── _h_e_m___hybrid_split_8java.html │ │ │ ├── _h_e_m___inflate_8java.html │ │ │ ├── _h_e_m___inv_smooth_8java.html │ │ │ ├── _h_e_m___lattice_8java.html │ │ │ ├── _h_e_m___mid_edge_split_8java.html │ │ │ ├── _h_e_m___mirror_8java.html │ │ │ ├── _h_e_m___modifier_8java.html │ │ │ ├── _h_e_m___multi_slice_8java.html │ │ │ ├── _h_e_m___multi_slice_surface_8java.html │ │ │ ├── _h_e_m___noise_8java.html │ │ │ ├── _h_e_m___punch_holes_8java.html │ │ │ ├── _h_e_m___quad_split_8java.html │ │ │ ├── _h_e_m___remove_small_fragments_8java.html │ │ │ ├── _h_e_m___shell_8java.html │ │ │ ├── _h_e_m___skew_8java.html │ │ │ ├── _h_e_m___slice_8java.html │ │ │ ├── _h_e_m___slice_surface_8java.html │ │ │ ├── _h_e_m___smooth_8java.html │ │ │ ├── _h_e_m___smooth_inset_8java.html │ │ │ ├── _h_e_m___soapfilm_8java.html │ │ │ ├── _h_e_m___sphere_inversion_8java.html │ │ │ ├── _h_e_m___spherify_8java.html │ │ │ ├── _h_e_m___stretch_8java.html │ │ │ ├── _h_e_m___tangential_smooth_8java.html │ │ │ ├── _h_e_m___tri_split_8java.html │ │ │ ├── _h_e_m___triangulate_8java.html │ │ │ ├── _h_e_m___twist_8java.html │ │ │ ├── _h_e_m___vertex_expand_8java.html │ │ │ ├── _h_e_m___wireframe_8java.html │ │ │ ├── _h_e_m_c___explode_8java.html │ │ │ ├── _h_e_m_c___multi_creator_8java.html │ │ │ ├── _h_e_m_c___panelizer_8java.html │ │ │ ├── _h_e_m_c___split_mesh_8java.html │ │ │ ├── _h_e_m_c___voronoi_cells_8java.html │ │ │ ├── _h_e_m_c___voronoi_spheres_8java.html │ │ │ ├── _h_e_m_c___weaire_phelan_8java.html │ │ │ ├── _h_e_s___catmull_clark_8java.html │ │ │ ├── _h_e_s___doo_sabin_8java.html │ │ │ ├── _h_e_s___planar_8java.html │ │ │ ├── _h_e_s___planar_mid_edge_8java.html │ │ │ ├── _h_e_s___simplifier_8java.html │ │ │ ├── _h_e_s___smooth_8java.html │ │ │ ├── _h_e_s___subdividor_8java.html │ │ │ ├── _h_e_s___tri_dec_8java.html │ │ │ ├── _h_e_s___tri_dec_limit_8java.html │ │ │ ├── _h_e_t___binary_hemesh_writer_8java.html │ │ │ ├── _h_e_t___diagnosis_8java.html │ │ │ ├── _h_e_t___export_8java.html │ │ │ ├── _h_e_t___hemesh_writer_8java.html │ │ │ ├── _h_e_t___import_8java.html │ │ │ ├── _h_e_t___mesh_buffer_8java.html │ │ │ ├── _h_e_t___mesh_op_8java.html │ │ │ ├── _h_e_t___o_b_j_writer_8java.html │ │ │ ├── _h_e_t___p_l_y_writer_8java.html │ │ │ ├── _h_e_t___p_o_v_writer_8java.html │ │ │ ├── _h_e_t___planar_path_triangulator_8java.html │ │ │ ├── _h_e_t___progress_reporter_8java.html │ │ │ ├── _h_e_t___progress_tracker_8java.html │ │ │ ├── _h_e_t___recorder_8java.html │ │ │ ├── _h_e_t___s_t_l_writer_8java.html │ │ │ ├── _h_e_t___simple_mesh_writer_8java.html │ │ │ ├── _h_e_t___texture_8java.html │ │ │ ├── _h_e_t___u_v_w_map_8java.html │ │ │ ├── _h_e_t___w_r_l_writer_8java.html │ │ │ ├── _tri___b_point_8java.html │ │ │ ├── _tri___face_walk_8java.html │ │ │ ├── _tri___half_edge_8java.html │ │ │ ├── _tri___point_8java.html │ │ │ ├── _w_b___a_a_b_b_8java.html │ │ │ ├── _w_b___a_a_b_b_tree_8java.html │ │ │ ├── _w_b___alpha_complex_8java.html │ │ │ ├── _w_b___b_spline_8java.html │ │ │ ├── _w_b___b_spline_surface_8java.html │ │ │ ├── _w_b___bernstein_8java.html │ │ │ ├── _w_b___bezier_8java.html │ │ │ ├── _w_b___bezier_surface_8java.html │ │ │ ├── _w_b___binomial_8java.html │ │ │ ├── _w_b___circle_8java.html │ │ │ ├── _w_b___classification_convex_8java.html │ │ │ ├── _w_b___classification_geometry_8java.html │ │ │ ├── _w_b___classify_8java.html │ │ │ ├── _w_b___constant_parameter_8java.html │ │ │ ├── _w_b___constrained_triangulation_8java.html │ │ │ ├── _w_b___context2_d_8java.html │ │ │ ├── _w_b___coordinate_8java.html │ │ │ ├── _w_b___coordinate_full_8java.html │ │ │ ├── _w_b___coordinate_math_8java.html │ │ │ ├── _w_b___coordinate_metric_8java.html │ │ │ ├── _w_b___coordinate_op_8java.html │ │ │ ├── _w_b___coordinate_sequence_8java.html │ │ │ ├── _w_b___coordinate_system_8java.html │ │ │ ├── _w_b___coordinate_transform_8java.html │ │ │ ├── _w_b___curve_8java.html │ │ │ ├── _w_b___danzer_8java.html │ │ │ ├── _w_b___debug_render3_d_8java.html │ │ │ ├── _w_b___delaunay_8java.html │ │ │ ├── _w_b___disclaimer_8java.html │ │ │ ├── _w_b___double_double_8java.html │ │ │ ├── _w_b___embedded_plane_8java.html │ │ │ ├── _w_b___epsilon_8java.html │ │ │ ├── _w_b___face_list_mesh_8java.html │ │ │ ├── _w_b___frame_8java.html │ │ │ ├── _w_b___frame_node_8java.html │ │ │ ├── _w_b___frame_strut_8java.html │ │ │ ├── _w_b___function1_d_8java.html │ │ │ ├── _w_b___function2_d_8java.html │ │ │ ├── _w_b___function3_d_8java.html │ │ │ ├── _w_b___function4_d_8java.html │ │ │ ├── _w_b___geodesic_8java.html │ │ │ ├── _w_b___geodesic_i_8java.html │ │ │ ├── _w_b___geodesic_i_i_8java.html │ │ │ ├── _w_b___geodesic_i_i_i_8java.html │ │ │ ├── _w_b___geodesic_math_8java.html │ │ │ ├── _w_b___geom_grid_8java.html │ │ │ ├── _w_b___geom_grid_cell_8java.html │ │ │ ├── _w_b___geometry_8java.html │ │ │ ├── _w_b___geometry_collection_8java.html │ │ │ ├── _w_b___geometry_factory_8java.html │ │ │ ├── _w_b___geometry_op_8java.html │ │ │ ├── _w_b___geometry_type_8java.html │ │ │ ├── _w_b___has_color_8java.html │ │ │ ├── _w_b___has_data_8java.html │ │ │ ├── _w_b___hash_grid_8java.html │ │ │ ├── _w_b___indexed_bisector_8java.html │ │ │ ├── _w_b___indexed_segment_8java.html │ │ │ ├── _w_b___intersection_result_8java.html │ │ │ ├── _w_b___johnson_polyhedra_data01_8java.html │ │ │ ├── _w_b___johnson_polyhedra_data02_8java.html │ │ │ ├── _w_b___johnson_polyhedra_data03_8java.html │ │ │ ├── _w_b___johnson_polyhedra_data04_8java.html │ │ │ ├── _w_b___k_d_tree_8java.html │ │ │ ├── _w_b___line_8java.html │ │ │ ├── _w_b___line_sweep_8java.html │ │ │ ├── _w_b___linear_8java.html │ │ │ ├── _w_b___linear_parameter1_d_8java.html │ │ │ ├── _w_b___m33_8java.html │ │ │ ├── _w_b___m44_8java.html │ │ │ ├── _w_b___m_t_random_8java.html │ │ │ ├── _w_b___map_8java.html │ │ │ ├── _w_b___math_8java.html │ │ │ ├── _w_b___mesh_8java.html │ │ │ ├── _w_b___mesh_creator_8java.html │ │ │ ├── _w_b___mesh_graph_8java.html │ │ │ ├── _w_b___mutable_coordinate_8java.html │ │ │ ├── _w_b___mutable_coordinate_full_8java.html │ │ │ ├── _w_b___mutable_coordinate_math_8java.html │ │ │ ├── _w_b___mutable_coordinate_transform_8java.html │ │ │ ├── _w_b___nurbs_knot_8java.html │ │ │ ├── _w_b___nurbs_ruled_surface_8java.html │ │ │ ├── _w_b___nurbs_surface_of_revolution_8java.html │ │ │ ├── _w_b___nurbs_swung_surface_8java.html │ │ │ ├── _w_b___ortho_project_8java.html │ │ │ ├── _w_b___parameter_8java.html │ │ │ ├── _w_b___planar_parameter2_d_8java.html │ │ │ ├── _w_b___plane_8java.html │ │ │ ├── _w_b___point4_d_8java.html │ │ │ ├── _w_b___point_8java.html │ │ │ ├── _w_b___point_homogeneous_8java.html │ │ │ ├── _w_b___poly_line_8java.html │ │ │ ├── _w_b___polygon_8java.html │ │ │ ├── _w_b___polygon_type_8java.html │ │ │ ├── _w_b___polyhedra_data_8java.html │ │ │ ├── _w_b___predicates_8java.html │ │ │ ├── _w_b___quad_8java.html │ │ │ ├── _w_b___r_b_spline_8java.html │ │ │ ├── _w_b___r_b_spline_surface_8java.html │ │ │ ├── _w_b___r_bezier_8java.html │ │ │ ├── _w_b___r_bezier_surface_8java.html │ │ │ ├── _w_b___random_circle_8java.html │ │ │ ├── _w_b___random_cube_8java.html │ │ │ ├── _w_b___random_disk_8java.html │ │ │ ├── _w_b___random_in_sphere_8java.html │ │ │ ├── _w_b___random_on_sphere_8java.html │ │ │ ├── _w_b___random_square_8java.html │ │ │ ├── _w_b___ray_8java.html │ │ │ ├── _w_b___render2_d_8java.html │ │ │ ├── _w_b___render3_d_8java.html │ │ │ ├── _w_b___render_8java.html │ │ │ ├── _w_b___ring_8java.html │ │ │ ├── _w_b___segment_8java.html │ │ │ ├── _w_b___select_render3_d_8java.html │ │ │ ├── _w_b___sequence_point_8java.html │ │ │ ├── _w_b___sequence_vector_8java.html │ │ │ ├── _w_b___shape_reader_8java.html │ │ │ ├── _w_b___simple_sequence_vector_8java.html │ │ │ ├── _w_b___simple_vector_8java.html │ │ │ ├── _w_b___simplex_8java.html │ │ │ ├── _w_b___spatial_parameter3_d_8java.html │ │ │ ├── _w_b___sphere_8java.html │ │ │ ├── _w_b___surface_8java.html │ │ │ ├── _w_b___surface_blend_8java.html │ │ │ ├── _w_b___tetrahedron_8java.html │ │ │ ├── _w_b___transform_8java.html │ │ │ ├── _w_b___tri_grid_8java.html │ │ │ ├── _w_b___triangle_8java.html │ │ │ ├── _w_b___triangle_mesh_8java.html │ │ │ ├── _w_b___triangulate_8java.html │ │ │ ├── _w_b___triangulation2_d_8java.html │ │ │ ├── _w_b___triangulation2_d_with_points_8java.html │ │ │ ├── _w_b___triangulation3_d_8java.html │ │ │ ├── _w_b___tween_8java.html │ │ │ ├── _w_b___vector_8java.html │ │ │ ├── _w_b___version_8java.html │ │ │ ├── _w_b___voronoi2_d_8java.html │ │ │ ├── _w_b___voronoi_8java.html │ │ │ ├── _w_b___voronoi_cell2_d_8java.html │ │ │ ├── _w_b___voronoi_cell3_d_8java.html │ │ │ ├── annotated.html │ │ │ ├── classes.html │ │ │ ├── classwblut_1_1core_1_1_w_b___disclaimer-members.html │ │ │ ├── classwblut_1_1core_1_1_w_b___disclaimer.html │ │ │ ├── classwblut_1_1core_1_1_w_b___version-members.html │ │ │ ├── classwblut_1_1core_1_1_w_b___version.html │ │ │ ├── classwblut_1_1geom_1_1_tri___b_point-members.html │ │ │ ├── classwblut_1_1geom_1_1_tri___b_point.html │ │ │ ├── classwblut_1_1geom_1_1_tri___face_walk-members.html │ │ │ ├── classwblut_1_1geom_1_1_tri___face_walk.html │ │ │ ├── classwblut_1_1geom_1_1_tri___half_edge-members.html │ │ │ ├── classwblut_1_1geom_1_1_tri___half_edge.html │ │ │ ├── classwblut_1_1geom_1_1_tri___point-members.html │ │ │ ├── classwblut_1_1geom_1_1_tri___point.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b_tree-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b_tree.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b_tree_1_1_w_b___a_a_b_b_node-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___a_a_b_b_tree_1_1_w_b___a_a_b_b_node.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___alpha_complex-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___alpha_complex.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___b_spline-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___b_spline.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___b_spline_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___b_spline_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___bezier-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___bezier.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___bezier_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___bezier_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___circle-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___circle.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___classify-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___classify.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___constrained_triangulation-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___constrained_triangulation.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_op-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_op.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_sequence-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_sequence.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_system-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___coordinate_system.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___danzer-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___danzer.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___delaunay-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___delaunay.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___embedded_plane-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___embedded_plane.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___face_list_mesh-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___face_list_mesh.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame_node-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame_node.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame_strut-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___frame_strut.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i_i-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i_i.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i_i_i-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_i_i_i.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_math-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_math.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_math_1_1_w_b___great_circle_intersection-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geodesic_math_1_1_w_b___great_circle_intersection.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geom_grid-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geom_grid.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geom_grid_cell-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geom_grid_cell.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_collection-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_collection.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_factory-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_factory.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_op-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_op.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_op_1_1_triangle_intersection-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___geometry_op_1_1_triangle_intersection.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___hash_grid-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___hash_grid.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___indexed_bisector-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___indexed_bisector.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___indexed_segment-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___indexed_segment.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___intersection_result-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___intersection_result.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data01-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data01.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data02-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data02.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data03-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data03.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data04-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___johnson_polyhedra_data04.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_query_result-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_query_result.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_w_b___k_d_entry-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_w_b___k_d_entry.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_w_b___k_d_node-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___k_d_tree_1_1_w_b___k_d_node.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___line-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___line.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___line_sweep-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___line_sweep.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___linear-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___linear.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph_1_1_w_b___g_edge-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph_1_1_w_b___g_edge.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph_1_1_w_b___g_vertex-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___mesh_graph_1_1_w_b___g_vertex.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_knot-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_knot.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_ruled_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_ruled_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_surface_of_revolution-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_surface_of_revolution.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_swung_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___nurbs_swung_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ortho_project-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ortho_project.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___plane-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___plane.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point4_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point4_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point_homogeneous-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___point_homogeneous.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___poly_line-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___poly_line.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___polygon-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___polygon.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___predicates-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___predicates.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___quad-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___quad.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_b_spline-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_b_spline.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_b_spline_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_b_spline_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_bezier-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_bezier.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_bezier_surface-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___r_bezier_surface.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ray-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ray.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ring-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___ring.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___segment-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___segment.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sequence_point-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sequence_point.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sequence_vector-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sequence_vector.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___shape_reader_1_1_ring_node-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___shape_reader_1_1_ring_node.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___shape_reader_1_1_ring_tree-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___shape_reader_1_1_ring_tree.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___simple_sequence_vector-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___simple_sequence_vector.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___simple_vector-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___simple_vector.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sphere-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___sphere.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___surface_blend-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___surface_blend.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___tetrahedron-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___tetrahedron.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___transform-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___transform.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___tri_grid-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___tri_grid.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangle-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangle.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangle_mesh-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangle_mesh.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_edge_flipper-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_edge_flipper.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_double-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_double.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_double_comparator-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_double_comparator.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_envelope-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_envelope.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_envelope_comparator-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_indexed_envelope_comparator.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_triangle-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulate_1_1_triangle.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation2_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation2_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation2_d_with_points-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation2_d_with_points.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation3_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___triangulation3_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___vector-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___vector.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d_1_1_voronoi_edge2_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d_1_1_voronoi_edge2_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d_1_1_voronoi_halfedge2_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi2_d_1_1_voronoi_halfedge2_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi_cell2_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi_cell2_d.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi_cell3_d-members.html │ │ │ ├── classwblut_1_1geom_1_1_w_b___voronoi_cell3_d.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___dynamic_mesh-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___dynamic_mesh.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___edge_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___edge_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___element-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___element.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_edge_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_edge_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_face_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_face_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_halfedge_inner_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_halfedge_inner_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_halfedge_outer_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_halfedge_outer_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_intersection-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_intersection.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_vertex_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___face_vertex_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___halfedge-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___halfedge.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___halfedge_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___halfedge_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___intersection-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___intersection.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___machine-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___machine.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___mesh-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___mesh.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___mesh_structure-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___mesh_structure.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_edge_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_edge_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_face_inner_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_face_inner_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_face_outer_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_face_outer_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge_inner_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge_inner_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge_outer_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_halfedge_outer_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_vertex_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___path_vertex_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s_javolution-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s_javolution.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s_trove-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___r_a_s_trove.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___selection-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___selection.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___texture_coordinate-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___texture_coordinate.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_edge_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_edge_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_face_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_face_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_halfedge_in_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_halfedge_in_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_halfedge_out_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_halfedge_out_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_iterator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_iterator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_vertex_circulator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e___vertex_vertex_circulator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___alpha_shape-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___alpha_shape.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___archimedes-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___archimedes.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___beethoven-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___beethoven.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___box-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___box.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cone-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cone.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___convex_hull-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___convex_hull.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___copy-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___copy.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___creator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___creator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cube-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cube.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cylinder-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___cylinder.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___data_cylinder-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___data_cylinder.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___dodecahedron-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___dodecahedron.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___dual-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___dual.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___ellipsoid-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___ellipsoid.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_decode3ds_1_1_chunk_info-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_decode3ds_1_1_chunk_info.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_exception3ds-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_exception3ds.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_scene3ds-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_scene3ds.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_scene3ds_1_1_head-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from3ds_file_1_1_scene3ds_1_1_head.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_binary_hemesh_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_binary_hemesh_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_binary_s_t_l_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_binary_s_t_l_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_facelist-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_facelist.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_frame-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_frame.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_hemesh_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_hemesh_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_mesh-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_mesh.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_o_b_j_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_o_b_j_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_obj_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_obj_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_polygons-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_polygons.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_quads-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_quads.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_simple_mesh_file-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_simple_mesh_file.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_surface-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_surface.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_triangles-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_triangles.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_voronoi_cells-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___from_voronoi_cells.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___geodesic-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___geodesic.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___grid-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___grid.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___icosahedron-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___icosahedron.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_function-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_function.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_grid-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_grid.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_n_e_p-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_n_e_p.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_s_n_a_p-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_s_n_a_p.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_v_o_l-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___iso_surface_v_o_l.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___johnson-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___johnson.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___octahedron-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___octahedron.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___plato-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___plato.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___polygon-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___polygon.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___prism-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___prism.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___revolve_polygon-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___revolve_polygon.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sea_shell-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sea_shell.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___shrink_wrap-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___shrink_wrap.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sphere-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sphere.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___super_duper-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___super_duper.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sweep_tube-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___sweep_tube.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tetrahedron-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tetrahedron.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___torus-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___torus.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tube-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tube.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tube_segment-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___tube_segment.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___u_v_parametric-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___u_v_parametric.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___voronoi_cell-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___voronoi_cell.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___voronoi_sphere-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_c___voronoi_sphere.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___bend-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___bend.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___cap_holes-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___cap_holes.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___center_split-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___center_split.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___center_split_hole-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___center_split_hole.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___chamfer_corners-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___chamfer_corners.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___chamfer_edges-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___chamfer_edges.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___clean-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___clean.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___crocodile-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___crocodile.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___diagrid-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___diagrid.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___do_nothing-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___do_nothing.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___equalize_valence-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___equalize_valence.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___extrude-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___extrude.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___face_expand-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___face_expand.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___hybrid_split-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___hybrid_split.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___inflate-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___inflate.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___inv_smooth-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___inv_smooth.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___lattice-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___lattice.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___mid_edge_split-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___mid_edge_split.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___mirror-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___mirror.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___modifier-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___modifier.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___multi_slice-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___multi_slice.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___multi_slice_surface-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___multi_slice_surface.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___noise-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___noise.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___punch_holes-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___punch_holes.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___quad_split-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___quad_split.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___remove_small_fragments-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___remove_small_fragments.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___shell-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___shell.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___skew-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___skew.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___slice-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___slice.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___slice_surface-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___slice_surface.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___smooth-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___smooth.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___smooth_inset-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___smooth_inset.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___soapfilm-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___soapfilm.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___sphere_inversion-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___sphere_inversion.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___spherify-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___spherify.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___stretch-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___stretch.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___tangential_smooth-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___tangential_smooth.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___tri_split-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___tri_split.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___triangulate-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___triangulate.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___twist-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___twist.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___vertex_expand-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___vertex_expand.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___wireframe-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m___wireframe.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___explode-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___explode.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___multi_creator-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___multi_creator.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___panelizer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___panelizer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___split_mesh-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___split_mesh.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___voronoi_cells-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___voronoi_cells.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___voronoi_spheres-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___voronoi_spheres.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___weaire_phelan-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_m_c___weaire_phelan.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___catmull_clark-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___catmull_clark.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___doo_sabin-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___doo_sabin.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___planar-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___planar.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___planar_mid_edge-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___planar_mid_edge.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___simplifier-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___simplifier.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___smooth-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___smooth.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___subdividor-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___subdividor.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_1_1_heap-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_1_1_heap.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_limit-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_limit.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_limit_1_1_heap-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_s___tri_dec_limit_1_1_heap.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___binary_hemesh_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___binary_hemesh_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___diagnosis-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___diagnosis.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___diagnosis_1_1_h_e_t___self_intersection-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___diagnosis_1_1_h_e_t___self_intersection.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___export-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___export.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___hemesh_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___hemesh_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___import.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___mesh_buffer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___mesh_buffer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___mesh_op-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___mesh_op.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___o_b_j_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___o_b_j_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___p_l_y_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___p_l_y_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___p_o_v_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___p_o_v_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___planar_path_triangulator_1_1_ring_node-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___planar_path_triangulator_1_1_ring_node.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___planar_path_triangulator_1_1_ring_tree-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___planar_path_triangulator_1_1_ring_tree.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___progress_reporter-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___progress_reporter.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___progress_tracker-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___progress_tracker.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___recorder-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___recorder.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_default_s_t_l_color_model-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_default_s_t_l_color_model.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_materialise_s_t_l_color_model-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_materialise_s_t_l_color_model.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_no_color_model-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_no_color_model.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___simple_mesh_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___simple_mesh_writer.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___texture-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___texture.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___u_v_w_map.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___w_r_l_writer-members.html │ │ │ ├── classwblut_1_1hemesh_1_1_h_e_t___w_r_l_writer.html │ │ │ ├── classwblut_1_1math_1_1_w_b___bernstein-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___bernstein.html │ │ │ ├── classwblut_1_1math_1_1_w_b___binomial-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___binomial.html │ │ │ ├── classwblut_1_1math_1_1_w_b___constant_parameter-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___constant_parameter.html │ │ │ ├── classwblut_1_1math_1_1_w_b___double_double-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___double_double.html │ │ │ ├── classwblut_1_1math_1_1_w_b___epsilon-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___epsilon.html │ │ │ ├── classwblut_1_1math_1_1_w_b___linear_parameter1_d-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___linear_parameter1_d.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m33-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m33.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m44-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m44.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m_t_random-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___m_t_random.html │ │ │ ├── classwblut_1_1math_1_1_w_b___math-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___math.html │ │ │ ├── classwblut_1_1math_1_1_w_b___planar_parameter2_d-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___planar_parameter2_d.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_circle-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_circle.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_cube-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_cube.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_disk-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_disk.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_in_sphere-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_in_sphere.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_on_sphere-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_on_sphere.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_square-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___random_square.html │ │ │ ├── classwblut_1_1math_1_1_w_b___spatial_parameter3_d-members.html │ │ │ ├── classwblut_1_1math_1_1_w_b___spatial_parameter3_d.html │ │ │ ├── classwblut_1_1math_1_1_w_b___tween.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___debug_render3_d-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___debug_render3_d.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render2_d-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render2_d.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render3_d-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render3_d.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render3_d_1_1_unproject-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___render3_d_1_1_unproject.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___select_render3_d-members.html │ │ │ ├── classwblut_1_1processing_1_1_w_b___select_render3_d.html │ │ │ ├── deprecated.html │ │ │ ├── dir_21fcc5889983fe17b0ccc14729161364.html │ │ │ ├── dir_3c2cd38a396cb2e3e6ca02b06d1258af.html │ │ │ ├── dir_3fa791b6bd53edb207672f6b41c1e23b.html │ │ │ ├── dir_565700d224eeeff9c0c7c4ea07e3b75a.html │ │ │ ├── dir_cca70d644743b834c2f58d094ce107fe.html │ │ │ ├── dir_fb7b6b130ce63004c08ebeae0c02c970.html │ │ │ ├── dir_ff109e272e11f409b3ba54980a9d98e1.html │ │ │ ├── doxygen.css │ │ │ ├── dynsections.js │ │ │ ├── enumwblut_1_1geom_1_1_w_b___classification_convex-members.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___classification_convex.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___classification_geometry-members.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___classification_geometry.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___danzer_1_1_type-members.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___danzer_1_1_type.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___geometry_type-members.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___geometry_type.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___polygon_type-members.html │ │ │ ├── enumwblut_1_1geom_1_1_w_b___polygon_type.html │ │ │ ├── files.html │ │ │ ├── functions.html │ │ │ ├── functions_a.html │ │ │ ├── functions_b.html │ │ │ ├── functions_c.html │ │ │ ├── functions_d.html │ │ │ ├── functions_e.html │ │ │ ├── functions_f.html │ │ │ ├── functions_func.html │ │ │ ├── functions_func_a.html │ │ │ ├── functions_func_b.html │ │ │ ├── functions_func_c.html │ │ │ ├── functions_func_d.html │ │ │ ├── functions_func_e.html │ │ │ ├── functions_func_f.html │ │ │ ├── functions_func_g.html │ │ │ ├── functions_func_h.html │ │ │ ├── functions_func_i.html │ │ │ ├── functions_func_j.html │ │ │ ├── functions_func_k.html │ │ │ ├── functions_func_l.html │ │ │ ├── functions_func_m.html │ │ │ ├── functions_func_n.html │ │ │ ├── functions_func_o.html │ │ │ ├── functions_func_p.html │ │ │ ├── functions_func_q.html │ │ │ ├── functions_func_r.html │ │ │ ├── functions_func_s.html │ │ │ ├── functions_func_t.html │ │ │ ├── functions_func_u.html │ │ │ ├── functions_func_v.html │ │ │ ├── functions_func_w.html │ │ │ ├── functions_func_x.html │ │ │ ├── functions_func_y.html │ │ │ ├── functions_func_z.html │ │ │ ├── functions_g.html │ │ │ ├── functions_h.html │ │ │ ├── functions_i.html │ │ │ ├── functions_j.html │ │ │ ├── functions_k.html │ │ │ ├── functions_l.html │ │ │ ├── functions_m.html │ │ │ ├── functions_n.html │ │ │ ├── functions_o.html │ │ │ ├── functions_p.html │ │ │ ├── functions_q.html │ │ │ ├── functions_r.html │ │ │ ├── functions_s.html │ │ │ ├── functions_t.html │ │ │ ├── functions_u.html │ │ │ ├── functions_v.html │ │ │ ├── functions_vars.html │ │ │ ├── functions_vars_a.html │ │ │ ├── functions_vars_b.html │ │ │ ├── functions_vars_c.html │ │ │ ├── functions_vars_d.html │ │ │ ├── functions_vars_e.html │ │ │ ├── functions_vars_f.html │ │ │ ├── functions_vars_g.html │ │ │ ├── functions_vars_h.html │ │ │ ├── functions_vars_i.html │ │ │ ├── functions_vars_j.html │ │ │ ├── functions_vars_k.html │ │ │ ├── functions_vars_l.html │ │ │ ├── functions_vars_m.html │ │ │ ├── functions_vars_n.html │ │ │ ├── functions_vars_o.html │ │ │ ├── functions_vars_p.html │ │ │ ├── functions_vars_q.html │ │ │ ├── functions_vars_r.html │ │ │ ├── functions_vars_s.html │ │ │ ├── functions_vars_t.html │ │ │ ├── functions_vars_u.html │ │ │ ├── functions_vars_v.html │ │ │ ├── functions_vars_w.html │ │ │ ├── functions_vars_x.html │ │ │ ├── functions_vars_y.html │ │ │ ├── functions_vars_z.html │ │ │ ├── functions_w.html │ │ │ ├── functions_x.html │ │ │ ├── functions_y.html │ │ │ ├── functions_z.html │ │ │ ├── hierarchy.html │ │ │ ├── index.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___context2_d-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___context2_d.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_full-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_full.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_math-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_math.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_metric-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_metric.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_transform-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___coordinate_transform.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___curve-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___curve.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___geometry-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___geometry.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___has_color-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___has_color.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___has_data-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___has_data.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mesh-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mesh.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mesh_creator-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mesh_creator.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_full-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_full.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_math-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_math.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_transform-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___mutable_coordinate_transform.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___simplex-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___simplex.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___surface-members.html │ │ │ ├── interfacewblut_1_1geom_1_1_w_b___surface.html │ │ │ ├── interfacewblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_s_t_l_color_model-members.html │ │ │ ├── interfacewblut_1_1hemesh_1_1_h_e_t___s_t_l_writer_1_1_s_t_l_color_model.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function1_d-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function1_d.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function2_d-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function2_d.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function3_d-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function3_d.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function4_d-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___function4_d.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___map-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___map.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___parameter-members.html │ │ │ ├── interfacewblut_1_1math_1_1_w_b___parameter.html │ │ │ ├── jquery.js │ │ │ ├── namespaces.html │ │ │ ├── namespacewblut.html │ │ │ ├── namespacewblut_1_1core.html │ │ │ ├── namespacewblut_1_1geom.html │ │ │ ├── namespacewblut_1_1hemesh.html │ │ │ ├── namespacewblut_1_1math.html │ │ │ ├── namespacewblut_1_1processing.html │ │ │ ├── pages.html │ │ │ ├── search │ │ │ ├── all_0.html │ │ │ ├── all_0.js │ │ │ ├── all_1.html │ │ │ ├── all_1.js │ │ │ ├── all_10.html │ │ │ ├── all_10.js │ │ │ ├── all_11.html │ │ │ ├── all_11.js │ │ │ ├── all_12.html │ │ │ ├── all_12.js │ │ │ ├── all_13.html │ │ │ ├── all_13.js │ │ │ ├── all_14.html │ │ │ ├── all_14.js │ │ │ ├── all_15.html │ │ │ ├── all_15.js │ │ │ ├── all_16.html │ │ │ ├── all_16.js │ │ │ ├── all_17.html │ │ │ ├── all_17.js │ │ │ ├── all_18.html │ │ │ ├── all_18.js │ │ │ ├── all_19.html │ │ │ ├── all_19.js │ │ │ ├── all_1a.html │ │ │ ├── all_1a.js │ │ │ ├── all_2.html │ │ │ ├── all_2.js │ │ │ ├── all_3.html │ │ │ ├── all_3.js │ │ │ ├── all_4.html │ │ │ ├── all_4.js │ │ │ ├── all_5.html │ │ │ ├── all_5.js │ │ │ ├── all_6.html │ │ │ ├── all_6.js │ │ │ ├── all_7.html │ │ │ ├── all_7.js │ │ │ ├── all_8.html │ │ │ ├── all_8.js │ │ │ ├── all_9.html │ │ │ ├── all_9.js │ │ │ ├── all_a.html │ │ │ ├── all_a.js │ │ │ ├── all_b.html │ │ │ ├── all_b.js │ │ │ ├── all_c.html │ │ │ ├── all_c.js │ │ │ ├── all_d.html │ │ │ ├── all_d.js │ │ │ ├── all_e.html │ │ │ ├── all_e.js │ │ │ ├── all_f.html │ │ │ ├── all_f.js │ │ │ ├── classes_0.html │ │ │ ├── classes_0.js │ │ │ ├── classes_1.html │ │ │ ├── classes_1.js │ │ │ ├── classes_2.html │ │ │ ├── classes_2.js │ │ │ ├── classes_3.html │ │ │ ├── classes_3.js │ │ │ ├── classes_4.html │ │ │ ├── classes_4.js │ │ │ ├── classes_5.html │ │ │ ├── classes_5.js │ │ │ ├── classes_6.html │ │ │ ├── classes_6.js │ │ │ ├── classes_7.html │ │ │ ├── classes_7.js │ │ │ ├── classes_8.html │ │ │ ├── classes_8.js │ │ │ ├── classes_9.html │ │ │ ├── classes_9.js │ │ │ ├── classes_a.html │ │ │ ├── classes_a.js │ │ │ ├── classes_b.html │ │ │ ├── classes_b.js │ │ │ ├── classes_c.html │ │ │ ├── classes_c.js │ │ │ ├── classes_d.html │ │ │ ├── classes_d.js │ │ │ ├── files_0.html │ │ │ ├── files_0.js │ │ │ ├── files_1.html │ │ │ ├── files_1.js │ │ │ ├── files_2.html │ │ │ ├── files_2.js │ │ │ ├── functions_0.html │ │ │ ├── functions_0.js │ │ │ ├── functions_1.html │ │ │ ├── functions_1.js │ │ │ ├── functions_10.html │ │ │ ├── functions_10.js │ │ │ ├── functions_11.html │ │ │ ├── functions_11.js │ │ │ ├── functions_12.html │ │ │ ├── functions_12.js │ │ │ ├── functions_13.html │ │ │ ├── functions_13.js │ │ │ ├── functions_14.html │ │ │ ├── functions_14.js │ │ │ ├── functions_15.html │ │ │ ├── functions_15.js │ │ │ ├── functions_16.html │ │ │ ├── functions_16.js │ │ │ ├── functions_17.html │ │ │ ├── functions_17.js │ │ │ ├── functions_18.html │ │ │ ├── functions_18.js │ │ │ ├── functions_19.html │ │ │ ├── functions_19.js │ │ │ ├── functions_1a.html │ │ │ ├── functions_1a.js │ │ │ ├── functions_2.html │ │ │ ├── functions_2.js │ │ │ ├── functions_3.html │ │ │ ├── functions_3.js │ │ │ ├── functions_4.html │ │ │ ├── functions_4.js │ │ │ ├── functions_5.html │ │ │ ├── functions_5.js │ │ │ ├── functions_6.html │ │ │ ├── functions_6.js │ │ │ ├── functions_7.html │ │ │ ├── functions_7.js │ │ │ ├── functions_8.html │ │ │ ├── functions_8.js │ │ │ ├── functions_9.html │ │ │ ├── functions_9.js │ │ │ ├── functions_a.html │ │ │ ├── functions_a.js │ │ │ ├── functions_b.html │ │ │ ├── functions_b.js │ │ │ ├── functions_c.html │ │ │ ├── functions_c.js │ │ │ ├── functions_d.html │ │ │ ├── functions_d.js │ │ │ ├── functions_e.html │ │ │ ├── functions_e.js │ │ │ ├── functions_f.html │ │ │ ├── functions_f.js │ │ │ ├── namespaces_0.html │ │ │ ├── namespaces_0.js │ │ │ ├── nomatches.html │ │ │ ├── pages_0.html │ │ │ ├── pages_0.js │ │ │ ├── search.css │ │ │ ├── search.js │ │ │ ├── searchdata.js │ │ │ ├── variables_0.html │ │ │ ├── variables_0.js │ │ │ ├── variables_1.html │ │ │ ├── variables_1.js │ │ │ ├── variables_10.html │ │ │ ├── variables_10.js │ │ │ ├── variables_11.html │ │ │ ├── variables_11.js │ │ │ ├── variables_12.html │ │ │ ├── variables_12.js │ │ │ ├── variables_13.html │ │ │ ├── variables_13.js │ │ │ ├── variables_14.html │ │ │ ├── variables_14.js │ │ │ ├── variables_15.html │ │ │ ├── variables_15.js │ │ │ ├── variables_16.html │ │ │ ├── variables_16.js │ │ │ ├── variables_17.html │ │ │ ├── variables_17.js │ │ │ ├── variables_18.html │ │ │ ├── variables_18.js │ │ │ ├── variables_19.html │ │ │ ├── variables_19.js │ │ │ ├── variables_1a.html │ │ │ ├── variables_1a.js │ │ │ ├── variables_2.html │ │ │ ├── variables_2.js │ │ │ ├── variables_3.html │ │ │ ├── variables_3.js │ │ │ ├── variables_4.html │ │ │ ├── variables_4.js │ │ │ ├── variables_5.html │ │ │ ├── variables_5.js │ │ │ ├── variables_6.html │ │ │ ├── variables_6.js │ │ │ ├── variables_7.html │ │ │ ├── variables_7.js │ │ │ ├── variables_8.html │ │ │ ├── variables_8.js │ │ │ ├── variables_9.html │ │ │ ├── variables_9.js │ │ │ ├── variables_a.html │ │ │ ├── variables_a.js │ │ │ ├── variables_b.html │ │ │ ├── variables_b.js │ │ │ ├── variables_c.html │ │ │ ├── variables_c.js │ │ │ ├── variables_d.html │ │ │ ├── variables_d.js │ │ │ ├── variables_e.html │ │ │ ├── variables_e.js │ │ │ ├── variables_f.html │ │ │ └── variables_f.js │ │ │ └── tabs.css │ ├── mesh │ │ ├── library │ │ │ ├── mesh.jar │ │ │ └── quickhull3d.1.4.jar │ │ └── source │ │ │ ├── Delaunay.java │ │ │ ├── Hull.java │ │ │ ├── IntArray.java │ │ │ ├── LinkedArray.java │ │ │ ├── LinkedIndex.java │ │ │ ├── MPolygon.java │ │ │ └── Voronoi.java │ └── peasycam │ │ ├── examples │ │ └── HelloPeasy │ │ │ └── HelloPeasy.pde │ │ ├── library.properties │ │ ├── library │ │ └── peasycam.jar │ │ ├── reference │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-all.html │ │ ├── index.html │ │ ├── overview-frame.html │ │ ├── overview-summary.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── peasy │ │ │ ├── CameraState.html │ │ │ ├── DampedAction.html │ │ │ ├── InterpolationUtil.html │ │ │ ├── PeasyCam.AbstractInterp.html │ │ │ ├── PeasyCam.html │ │ │ ├── PeasyDragHandler.html │ │ │ ├── PeasyWheelHandler.html │ │ │ ├── org │ │ │ │ └── apache │ │ │ │ │ └── commons │ │ │ │ │ └── math │ │ │ │ │ ├── MathException.html │ │ │ │ │ ├── geometry │ │ │ │ │ ├── CardanEulerSingularityException.html │ │ │ │ │ ├── NotARotationMatrixException.html │ │ │ │ │ ├── Rotation.html │ │ │ │ │ ├── RotationOrder.html │ │ │ │ │ ├── Vector3D.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── script.js │ │ ├── serialized-form.html │ │ └── stylesheet.css │ │ └── src │ │ └── peasy │ │ ├── CameraState.java │ │ ├── DampedAction.java │ │ ├── InterpolationManager.java │ │ ├── InterpolationUtil.java │ │ ├── PeasyCam.java │ │ ├── PeasyDragHandler.java │ │ ├── PeasyWheelHandler.java │ │ └── org │ │ └── apache │ │ └── commons │ │ └── math │ │ ├── MathException.java │ │ └── geometry │ │ ├── CardanEulerSingularityException.java │ │ ├── NotARotationMatrixException.java │ │ ├── Rotation.java │ │ ├── RotationOrder.java │ │ └── Vector3D.java ├── lineSweeper │ ├── lineSweeper.pde │ └── sketch.properties ├── linear_fade │ ├── linear_fade.pde │ └── sketch.properties ├── multipleWindows │ ├── multipleWindows.pde │ └── sketch.properties ├── neworkStudy │ ├── Edge.pde │ ├── Node.pde │ ├── neworkStudy.pde │ └── sketch.properties ├── pixelCritters │ ├── pixelCritters.pde │ └── sketch.properties ├── pixelStax │ ├── pixelStax.pde │ └── sketch.properties ├── point_density │ ├── point_density.pde │ └── sketch.properties ├── radiallines │ ├── radiallines.pde │ └── sketch.properties ├── sequenceCleaner │ └── sequenceCleaner.pde ├── sketch_2DCA │ ├── sketch.properties │ └── sketch_2DCA.pde ├── textures │ ├── sketch.properties │ └── textures.pde ├── vectorDrift │ ├── Block.pde │ ├── Block_Flock.pde │ ├── fileHandlers.pde │ └── vectorDrift.pde ├── vectorDrift_002 │ ├── Block.pde │ ├── Block_Flock.pde │ └── vectorDrift_002.pde ├── videoSort │ ├── sketch.properties │ └── videoSort.pde └── wobble │ ├── FileHandlers.pde │ ├── keyBindings.pde │ ├── sketch.properties │ └── wobble.pde ├── Processing 3 ├── BeadsTest │ └── BeadsTest.pde ├── CA │ └── CA.pde ├── CellSort │ ├── CellSort.pde │ ├── IO.pde │ ├── Pixel.pde │ └── controls.pde ├── GifCrippler │ ├── GifCrippler.pde │ └── sketch.properties ├── HelloNoise │ └── HelloNoise.pde ├── KIMBRA_02 │ ├── KIMBRA_02.pde │ ├── Point.pde │ └── sketch.properties ├── LangstonSort │ ├── Ant.pde │ ├── IO.pde │ ├── LangstonSort.pde │ ├── application.macosx │ │ ├── LangstonSort.app │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── Java │ │ │ │ ├── LangstonSort.jar │ │ │ │ ├── controlP5.jar │ │ │ │ ├── core.jar │ │ │ │ ├── gluegen-rt-natives-macosx-universal.jar │ │ │ │ ├── gluegen-rt.jar │ │ │ │ ├── jogl-all-natives-macosx-universal.jar │ │ │ │ └── jogl-all.jar │ │ │ │ ├── MacOS │ │ │ │ └── LangstonSort │ │ │ │ ├── PkgInfo │ │ │ │ └── Resources │ │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ │ └── sketch.icns │ │ └── source │ │ │ ├── Ant.pde │ │ │ ├── IO.pde │ │ │ ├── LangstonSort.java │ │ │ ├── LangstonSort.pde │ │ │ └── controls.pde │ └── controls.pde ├── MarbleScan │ └── MarbleScan.pde ├── PC_FR │ └── PC_FR.pde ├── copy_paste_test │ └── copy_paste_test.pde ├── drunkBubbles │ └── drunkBubbles.pde ├── forceOfHabit │ ├── Force.pde │ ├── IO.pde │ ├── Node.pde │ ├── Pixel.pde │ ├── controls.pde │ └── forceOfHabit.pde ├── imageReformatter │ └── imageReformatter.pde ├── imageTools_002 │ └── imageTools_002.pde ├── langston_s_ant │ ├── langston_s_ant.pde │ └── langston_s_ant_pde │ │ └── langston_s_ant_pde.pde ├── libraries │ ├── G4P │ │ ├── examples │ │ │ ├── G4P_CoolSliders │ │ │ │ └── G4P_CoolSliders.pde │ │ │ ├── G4P_CustomSlider_Config │ │ │ │ ├── G4P_CustomSlider_Config.pde │ │ │ │ └── configcontrols.pde │ │ │ ├── G4P_Dialogs │ │ │ │ └── G4P_Dialogs.pde │ │ │ ├── G4P_EditTextControls │ │ │ │ ├── G4P_EditTextControls.pde │ │ │ │ └── data │ │ │ │ │ └── book3.txt │ │ │ ├── G4P_GroupControls │ │ │ │ ├── G4P_GroupControls.pde │ │ │ │ ├── data │ │ │ │ │ ├── list_493061 │ │ │ │ │ └── list_679847 │ │ │ │ └── gui.pde │ │ │ ├── G4P_ImageButtons │ │ │ │ └── G4P_ImageButtons.pde │ │ │ ├── G4P_ImgTogButton │ │ │ │ └── G4P_ImgTogButton.pde │ │ │ ├── G4P_Knob_Config │ │ │ │ ├── G4P_Knob_Config.pde │ │ │ │ └── configcontrols.pde │ │ │ ├── G4P_Mandelbrot │ │ │ │ └── G4P_Mandelbrot.pde │ │ │ ├── G4P_RGBmixer │ │ │ │ └── G4P_RGBmixer.pde │ │ │ ├── G4P_Showcase │ │ │ │ ├── G4P_Showcase.pde │ │ │ │ ├── cinfigwindowcontrols.pde │ │ │ │ ├── data │ │ │ │ │ └── book.txt │ │ │ │ └── showcasecontrols.pde │ │ │ ├── G4P_Sketchpad │ │ │ │ └── G4P_Sketchpad.pde │ │ │ ├── G4P_Slider2D │ │ │ │ └── G4P_Slider2D.pde │ │ │ ├── G4P_Slider_Config │ │ │ │ ├── G4P_Slider_Config.pde │ │ │ │ └── configcontrols.pde │ │ │ ├── G4P_Stick │ │ │ │ └── G4P_Stick.pde │ │ │ ├── G4P_TextAreaControl │ │ │ │ ├── G4P_TextAreaControl.pde │ │ │ │ ├── configcontrols.pde │ │ │ │ └── data │ │ │ │ │ └── book3.txt │ │ │ ├── G4P_TextIconControls │ │ │ │ ├── G4P_TextIconControls.pde │ │ │ │ ├── configcontrols.pde │ │ │ │ └── data │ │ │ │ │ └── tisample.txt │ │ │ ├── G4P_Timer │ │ │ │ └── G4P_Timer.pde │ │ │ ├── G4P_Toroid │ │ │ │ ├── G4P_Toroid.pde │ │ │ │ └── Toroid.pde │ │ │ ├── G4P_WindowsStarter │ │ │ │ └── G4P_WindowsStarter.pde │ │ │ └── G4P_with_PeasyCam │ │ │ │ ├── G4P_with_PeasyCam.pde │ │ │ │ └── code │ │ │ │ └── peasycam.jar │ │ ├── library.properties │ │ ├── library │ │ │ ├── G4P.jar │ │ │ └── changes.txt │ │ ├── reference │ │ │ ├── allclasses-frame.html │ │ │ ├── allclasses-noframe.html │ │ │ ├── constant-values.html │ │ │ ├── deprecated-list.html │ │ │ ├── g4p_controls │ │ │ │ ├── Focusable.html │ │ │ │ ├── FontManager.html │ │ │ │ ├── G4P.html │ │ │ │ ├── GAbstractControl.Z_Order.html │ │ │ │ ├── GAbstractControl.html │ │ │ │ ├── GAlign.html │ │ │ │ ├── GButton.html │ │ │ │ ├── GCScheme.html │ │ │ │ ├── GCheckbox.html │ │ │ │ ├── GClip.html │ │ │ │ ├── GConstants.html │ │ │ │ ├── GControlMode.html │ │ │ │ ├── GCustomSlider.html │ │ │ │ ├── GDropList.html │ │ │ │ ├── GEditableTextControl.html │ │ │ │ ├── GEvent.html │ │ │ │ ├── GGroup.html │ │ │ │ ├── GImageButton.html │ │ │ │ ├── GImageToggleButton.html │ │ │ │ ├── GKnob.html │ │ │ │ ├── GLabel.html │ │ │ │ ├── GLinearTrackControl.html │ │ │ │ ├── GOption.html │ │ │ │ ├── GPanel.html │ │ │ │ ├── GPassword.html │ │ │ │ ├── GSketchPad.html │ │ │ │ ├── GSlider.html │ │ │ │ ├── GSlider2D.html │ │ │ │ ├── GStick.html │ │ │ │ ├── GTabManager.html │ │ │ │ ├── GTextAlign.html │ │ │ │ ├── GTextArea.html │ │ │ │ ├── GTextBase.html │ │ │ │ ├── GTextField.html │ │ │ │ ├── GTextIconAlignBase.html │ │ │ │ ├── GTimer.html │ │ │ │ ├── GToggleControl.html │ │ │ │ ├── GToggleGroup.html │ │ │ │ ├── GValueControl.html │ │ │ │ ├── GValueControl2D.html │ │ │ │ ├── GWinData.html │ │ │ │ ├── GWindow.html │ │ │ │ ├── GWindowAWT.html │ │ │ │ ├── GWindowImpl.html │ │ │ │ ├── GWindowNEWT.html │ │ │ │ ├── ImageManager.html │ │ │ │ ├── StyledString.TextLayoutHitInfo.html │ │ │ │ ├── StyledString.TextLayoutInfo.html │ │ │ │ ├── StyledString.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ └── package-tree.html │ │ │ ├── help-doc.html │ │ │ ├── index-all.html │ │ │ ├── index.html │ │ │ ├── overview-tree.html │ │ │ ├── package-list │ │ │ ├── serialized-form.html │ │ │ └── stylesheet.css │ │ └── src │ │ │ └── g4p_controls │ │ │ ├── ColorPreviewPanel.java │ │ │ ├── FileChooserFilter.java │ │ │ ├── FilenameChooserFilter.java │ │ │ ├── Focusable.java │ │ │ ├── FontManager.java │ │ │ ├── G4P.java │ │ │ ├── GAbstractControl.java │ │ │ ├── GAlign.java │ │ │ ├── GButton.java │ │ │ ├── GCScheme.java │ │ │ ├── GCheckbox.java │ │ │ ├── GClip.java │ │ │ ├── GConstants.java │ │ │ ├── GConstantsInternal.java │ │ │ ├── GControlMode.java │ │ │ ├── GCustomSlider.java │ │ │ ├── GDropList.java │ │ │ ├── GEditableTextControl.java │ │ │ ├── GEvent.java │ │ │ ├── GGroup.java │ │ │ ├── GImageButton.java │ │ │ ├── GImageToggleButton.java │ │ │ ├── GKnob.java │ │ │ ├── GLabel.java │ │ │ ├── GLinearTrackControl.java │ │ │ ├── GMessenger.java │ │ │ ├── GOption.java │ │ │ ├── GPanel.java │ │ │ ├── GPassword.java │ │ │ ├── GScrollbar.java │ │ │ ├── GSketchPad.java │ │ │ ├── GSlider.java │ │ │ ├── GSlider2D.java │ │ │ ├── GStick.java │ │ │ ├── GTabManager.java │ │ │ ├── GTextAlign.java │ │ │ ├── GTextArea.java │ │ │ ├── GTextBase.java │ │ │ ├── GTextField.java │ │ │ ├── GTextIconAlignBase.java │ │ │ ├── GTimer.java │ │ │ ├── GToggleControl.java │ │ │ ├── GToggleGroup.java │ │ │ ├── GValueControl.java │ │ │ ├── GValueControl2D.java │ │ │ ├── GWinData.java │ │ │ ├── GWindow.java │ │ │ ├── GWindowAWT.java │ │ │ ├── GWindowImpl.java │ │ │ ├── GWindowNEWT.java │ │ │ ├── HotSpot.java │ │ │ ├── ImageManager.java │ │ │ └── StyledString.java │ ├── controlP5-2.2.5 │ │ ├── controlP5 │ │ │ ├── examples │ │ │ │ ├── controllers │ │ │ │ │ ├── ControlP5accordion │ │ │ │ │ │ └── ControlP5accordion.pde │ │ │ │ │ ├── ControlP5background │ │ │ │ │ │ ├── ControlP5background.pde │ │ │ │ │ │ └── sketch.properties │ │ │ │ │ ├── ControlP5bang │ │ │ │ │ │ └── ControlP5bang.pde │ │ │ │ │ ├── ControlP5button │ │ │ │ │ │ └── ControlP5button.pde │ │ │ │ │ ├── ControlP5buttonBar │ │ │ │ │ │ └── ControlP5buttonBar.pde │ │ │ │ │ ├── ControlP5canvas │ │ │ │ │ │ └── ControlP5canvas.pde │ │ │ │ │ ├── ControlP5chart │ │ │ │ │ │ └── ControlP5chart.pde │ │ │ │ │ ├── ControlP5checkBox │ │ │ │ │ │ └── ControlP5checkBox.pde │ │ │ │ │ ├── ControlP5colorPicker │ │ │ │ │ │ └── ControlP5colorPicker.pde │ │ │ │ │ ├── ControlP5colorWheel │ │ │ │ │ │ └── ControlP5colorWheel.pde │ │ │ │ │ ├── ControlP5controlTimer │ │ │ │ │ │ └── ControlP5controlTimer.pde │ │ │ │ │ ├── ControlP5controllerProperties │ │ │ │ │ │ ├── ControlP5controllerProperties.pde │ │ │ │ │ │ └── hello.properties.json │ │ │ │ │ ├── ControlP5dropdownList │ │ │ │ │ │ └── ControlP5dropdownList.pde │ │ │ │ │ ├── ControlP5group │ │ │ │ │ │ └── ControlP5group.pde │ │ │ │ │ ├── ControlP5icon │ │ │ │ │ │ ├── ControlP5icon.pde │ │ │ │ │ │ └── fontawesome-webfont.ttf │ │ │ │ │ ├── ControlP5knob │ │ │ │ │ │ └── ControlP5knob.pde │ │ │ │ │ ├── ControlP5listBox │ │ │ │ │ │ └── ControlP5listBox.pde │ │ │ │ │ ├── ControlP5matrix │ │ │ │ │ │ └── ControlP5matrix.pde │ │ │ │ │ ├── ControlP5multilist │ │ │ │ │ │ └── ControlP5multiList.pde │ │ │ │ │ ├── ControlP5numberbox │ │ │ │ │ │ └── ControlP5numberbox.pde │ │ │ │ │ ├── ControlP5radioButton │ │ │ │ │ │ └── ControlP5radioButton.pde │ │ │ │ │ ├── ControlP5range │ │ │ │ │ │ └── ControlP5range.pde │ │ │ │ │ ├── ControlP5scrollableList │ │ │ │ │ │ └── ControlP5scrollableList.pde │ │ │ │ │ ├── ControlP5slider │ │ │ │ │ │ └── ControlP5slider.pde │ │ │ │ │ ├── ControlP5slider2D │ │ │ │ │ │ └── ControlP5slider2D.pde │ │ │ │ │ ├── ControlP5tab │ │ │ │ │ │ └── ControlP5tab.pde │ │ │ │ │ ├── ControlP5textarea │ │ │ │ │ │ └── ControlP5textarea.pde │ │ │ │ │ ├── ControlP5textfield │ │ │ │ │ │ └── ControlP5textfield.pde │ │ │ │ │ ├── ControlP5textlabel │ │ │ │ │ │ └── ControlP5textlabel.pde │ │ │ │ │ ├── ControlP5toggle │ │ │ │ │ │ └── ControlP5toggle.pde │ │ │ │ │ ├── ControlP5tooltip │ │ │ │ │ │ └── ControlP5tooltip.pde │ │ │ │ │ └── ControlP5window │ │ │ │ │ │ └── ControlP5window.pde │ │ │ │ ├── experimental │ │ │ │ │ ├── ControlP5CustomMatrix │ │ │ │ │ │ └── ControlP5CustomMatrix.pde │ │ │ │ │ ├── ControlP5MenuList │ │ │ │ │ │ └── ControlP5MenuList.pde │ │ │ │ │ ├── ControlP5SliderList │ │ │ │ │ │ └── ControlP5SliderList.pde │ │ │ │ │ ├── ControlP5editableNumberbox │ │ │ │ │ │ └── ControlP5editableNumberbox.pde │ │ │ │ │ ├── ControlP5graphics │ │ │ │ │ │ └── ControlP5graphics.pde │ │ │ │ │ └── MidiMapper │ │ │ │ │ │ ├── MidiMapper.pde │ │ │ │ │ │ └── MidiSimple.java │ │ │ │ ├── extra │ │ │ │ │ ├── ControlP5AutoDetectFields │ │ │ │ │ │ └── ControlP5AutoDetectFields.pde │ │ │ │ │ ├── ControlP5ControllerInsideClass │ │ │ │ │ │ └── ControlP5ControllerInsideClass.pde │ │ │ │ │ ├── ControlP5canvasDrawIntoCanvas │ │ │ │ │ │ └── ControlP5canvasDrawIntoCanvas.pde │ │ │ │ │ ├── ControlP5chartsCombined │ │ │ │ │ │ └── ControlP5chartsCombined.pde │ │ │ │ │ ├── ControlP5console │ │ │ │ │ │ └── ControlP5console.pde │ │ │ │ │ ├── ControlP5controllerOnTop3D │ │ │ │ │ │ └── ControlP5controllerOnTop3D.pde │ │ │ │ │ ├── ControlP5frame │ │ │ │ │ │ └── ControlP5frame.pde │ │ │ │ │ ├── ControlP5frameRate │ │ │ │ │ │ └── ControlP5frameRate.pde │ │ │ │ │ ├── ControlP5frames │ │ │ │ │ │ └── ControlP5frames.pde │ │ │ │ │ ├── ControlP5groupCanvas │ │ │ │ │ │ └── ControlP5groupCanvas.pde │ │ │ │ │ ├── ControlP5imageButton │ │ │ │ │ │ └── ControlP5imageButton.pde │ │ │ │ │ ├── ControlP5key │ │ │ │ │ │ └── ControlP5key.pde │ │ │ │ │ ├── ControlP5listBoxClear │ │ │ │ │ │ └── ControlP5listBoxClear.pde │ │ │ │ │ ├── ControlP5mouseWheel │ │ │ │ │ │ └── ControlP5mouseWheel.pde │ │ │ │ │ ├── ControlP5pointer │ │ │ │ │ │ └── ControlP5pointer.pde │ │ │ │ │ ├── ControlP5propertiesSets │ │ │ │ │ │ ├── ControlP5propertiesSets.pde │ │ │ │ │ │ ├── default.json │ │ │ │ │ │ └── setA.json │ │ │ │ │ ├── ControlP5renderIntoPGraphics │ │ │ │ │ │ └── ControlP5renderIntoPGraphics.pde │ │ │ │ │ ├── ControlP5style │ │ │ │ │ │ └── ControlP5style.pde │ │ │ │ │ ├── ControlP5textfieldAdvanced │ │ │ │ │ │ └── ControlP5textfieldAdvanced.pde │ │ │ │ │ └── ControlP5withPeasyCam │ │ │ │ │ │ └── ControlP5withPeasyCam.pde │ │ │ │ └── use │ │ │ │ │ ├── ControlP5annotation │ │ │ │ │ └── ControlP5annotation.pde │ │ │ │ │ ├── ControlP5basics │ │ │ │ │ └── ControlP5basics.pde │ │ │ │ │ ├── ControlP5beginEnd │ │ │ │ │ └── ControlP5beginEnd.pde │ │ │ │ │ ├── ControlP5behavior │ │ │ │ │ └── ControlP5behavior.pde │ │ │ │ │ ├── ControlP5bringToFront │ │ │ │ │ └── ControlP5bringToFront.pde │ │ │ │ │ ├── ControlP5callback │ │ │ │ │ └── ControlP5callback.pde │ │ │ │ │ ├── ControlP5controlEvent │ │ │ │ │ └── ControlP5controlEvent.pde │ │ │ │ │ ├── ControlP5controlFont │ │ │ │ │ └── ControlP5controlFont.pde │ │ │ │ │ ├── ControlP5customView │ │ │ │ │ └── ControlP5customView.pde │ │ │ │ │ ├── ControlP5extendController │ │ │ │ │ └── ControlP5extendController.pde │ │ │ │ │ ├── ControlP5listenerForSingleController │ │ │ │ │ └── ControlP5listenerForSingleController.pde │ │ │ │ │ ├── ControlP5mouseover │ │ │ │ │ └── ControlP5mouseover.pde │ │ │ │ │ ├── ControlP5plugTo │ │ │ │ │ └── ControlP5plugTo.pde │ │ │ │ │ ├── ControlP5propertiesCustom │ │ │ │ │ ├── ControlP5propertiesCustom.pde │ │ │ │ │ └── hello.json │ │ │ │ │ ├── ControlP5quick │ │ │ │ │ └── ControlP5quick.pde │ │ │ │ │ ├── ControlP5sliderSetValue │ │ │ │ │ └── ControlP5sliderSetValue.pde │ │ │ │ │ ├── ControlP5snapshot │ │ │ │ │ └── ControlP5snapshot.pde │ │ │ │ │ └── ControlP5workingWithIDs │ │ │ │ │ └── ControlP5workingWithIDs.pde │ │ │ ├── library.properties │ │ │ ├── library │ │ │ │ └── controlP5.jar │ │ │ ├── reference │ │ │ │ ├── allclasses-frame.html │ │ │ │ ├── allclasses-noframe.html │ │ │ │ ├── constant-values.html │ │ │ │ ├── controlP5 │ │ │ │ │ ├── Accordion.html │ │ │ │ │ ├── Background.html │ │ │ │ │ ├── Bang.html │ │ │ │ │ ├── BitFont.html │ │ │ │ │ ├── BoundingBox.html │ │ │ │ │ ├── Button.html │ │ │ │ │ ├── ButtonBar.html │ │ │ │ │ ├── CColor.html │ │ │ │ │ ├── CDrawable.html │ │ │ │ │ ├── CP.html │ │ │ │ │ ├── CallbackEvent.html │ │ │ │ │ ├── CallbackListener.html │ │ │ │ │ ├── Canvas.html │ │ │ │ │ ├── Chart.ChartViewArea.html │ │ │ │ │ ├── Chart.ChartViewBar.html │ │ │ │ │ ├── Chart.ChartViewBarCentered.html │ │ │ │ │ ├── Chart.ChartViewLine.html │ │ │ │ │ ├── Chart.ChartViewPie.html │ │ │ │ │ ├── Chart.html │ │ │ │ │ ├── ChartData.html │ │ │ │ │ ├── ChartDataSet.html │ │ │ │ │ ├── CheckBox.html │ │ │ │ │ ├── ColorPicker.html │ │ │ │ │ ├── ColorWheel.html │ │ │ │ │ ├── ControlBehavior.html │ │ │ │ │ ├── ControlBroadcaster.html │ │ │ │ │ ├── ControlElement.html │ │ │ │ │ ├── ControlEvent.html │ │ │ │ │ ├── ControlFont.html │ │ │ │ │ ├── ControlGroup.html │ │ │ │ │ ├── ControlKey.html │ │ │ │ │ ├── ControlListener.html │ │ │ │ │ ├── ControlP5.html │ │ │ │ │ ├── ControlP5Base.html │ │ │ │ │ ├── ControlP5Constants.html │ │ │ │ │ ├── ControlP5Legacy.html │ │ │ │ │ ├── ControlTimer.html │ │ │ │ │ ├── ControlWindow.Pointer.html │ │ │ │ │ ├── ControlWindow.html │ │ │ │ │ ├── Controller.html │ │ │ │ │ ├── ControllerGroup.html │ │ │ │ │ ├── ControllerInterface.html │ │ │ │ │ ├── ControllerList.html │ │ │ │ │ ├── ControllerPlug.html │ │ │ │ │ ├── ControllerProperties.html │ │ │ │ │ ├── ControllerProperty.html │ │ │ │ │ ├── ControllerStyle.html │ │ │ │ │ ├── ControllerView.html │ │ │ │ │ ├── DropdownList.DropdownListView.html │ │ │ │ │ ├── DropdownList.html │ │ │ │ │ ├── FrameRate.html │ │ │ │ │ ├── Group.html │ │ │ │ │ ├── Icon.html │ │ │ │ │ ├── Knob.html │ │ │ │ │ ├── Label.html │ │ │ │ │ ├── ListBox.ListBoxView.html │ │ │ │ │ ├── ListBox.html │ │ │ │ │ ├── ListBoxItem.html │ │ │ │ │ ├── Matrix.html │ │ │ │ │ ├── MultiList.html │ │ │ │ │ ├── MultiListButton.html │ │ │ │ │ ├── Numberbox.html │ │ │ │ │ ├── Pointer.html │ │ │ │ │ ├── Println.html │ │ │ │ │ ├── Radio.html │ │ │ │ │ ├── RadioButton.html │ │ │ │ │ ├── Range.html │ │ │ │ │ ├── ScrollableList.ScrollableListView.html │ │ │ │ │ ├── ScrollableList.html │ │ │ │ │ ├── Slider.html │ │ │ │ │ ├── Slider2D.html │ │ │ │ │ ├── Spacer.html │ │ │ │ │ ├── Tab.html │ │ │ │ │ ├── Textarea.html │ │ │ │ │ ├── Textfield.InputFilter.html │ │ │ │ │ ├── Textfield.html │ │ │ │ │ ├── Textlabel.html │ │ │ │ │ ├── TickMark.html │ │ │ │ │ ├── Toggle.html │ │ │ │ │ ├── Tooltip.html │ │ │ │ │ ├── package-frame.html │ │ │ │ │ ├── package-summary.html │ │ │ │ │ └── package-tree.html │ │ │ │ ├── help-doc.html │ │ │ │ ├── index-all.html │ │ │ │ ├── index.html │ │ │ │ ├── overview-tree.html │ │ │ │ ├── package-list │ │ │ │ ├── script.js │ │ │ │ ├── serialized-form.html │ │ │ │ └── stylesheet.css │ │ │ └── src │ │ │ │ └── controlP5 │ │ │ │ ├── Accordion.java │ │ │ │ ├── Background.java │ │ │ │ ├── Bang.java │ │ │ │ ├── BitFont.java │ │ │ │ ├── Button.java │ │ │ │ ├── ButtonBar.java │ │ │ │ ├── CColor.java │ │ │ │ ├── CDrawable.java │ │ │ │ ├── CP.java │ │ │ │ ├── CallbackEvent.java │ │ │ │ ├── CallbackListener.java │ │ │ │ ├── Canvas.java │ │ │ │ ├── Chart.java │ │ │ │ ├── ChartData.java │ │ │ │ ├── ChartDataSet.java │ │ │ │ ├── CheckBox.java │ │ │ │ ├── ColorPalette.java │ │ │ │ ├── ColorPicker.java │ │ │ │ ├── ColorWheel.java │ │ │ │ ├── ControlBehavior.java │ │ │ │ ├── ControlBroadcaster.java │ │ │ │ ├── ControlElement.java │ │ │ │ ├── ControlEvent.java │ │ │ │ ├── ControlFont.java │ │ │ │ ├── ControlGroup.java │ │ │ │ ├── ControlKey.java │ │ │ │ ├── ControlListener.java │ │ │ │ ├── ControlP5.java │ │ │ │ ├── ControlP5Base.java │ │ │ │ ├── ControlP5Constants.java │ │ │ │ ├── ControlP5Legacy.java │ │ │ │ ├── ControlTimer.java │ │ │ │ ├── ControlWindow.java │ │ │ │ ├── ControlWindowCanvas.java │ │ │ │ ├── Controller.java │ │ │ │ ├── ControllerAutomator.java │ │ │ │ ├── ControllerDisplay.java │ │ │ │ ├── ControllerGroup.java │ │ │ │ ├── ControllerInterface.java │ │ │ │ ├── ControllerLayout.java │ │ │ │ ├── ControllerLayoutElement.java │ │ │ │ ├── ControllerList.java │ │ │ │ ├── ControllerPlug.java │ │ │ │ ├── ControllerProperties.java │ │ │ │ ├── ControllerProperty.java │ │ │ │ ├── ControllerStyle.java │ │ │ │ ├── ControllerView.java │ │ │ │ ├── DropdownList.java │ │ │ │ ├── FieldChangedListener.java │ │ │ │ ├── FrameRate.java │ │ │ │ ├── Group.java │ │ │ │ ├── Icon.java │ │ │ │ ├── Knob.java │ │ │ │ ├── Label.java │ │ │ │ ├── ListBox.java │ │ │ │ ├── Matrix.java │ │ │ │ ├── MultiList.java │ │ │ │ ├── MultiListButton.java │ │ │ │ ├── MultiListInterface.java │ │ │ │ ├── Numberbox.java │ │ │ │ ├── Pad.java │ │ │ │ ├── Pointer.java │ │ │ │ ├── Println.java │ │ │ │ ├── Radio.java │ │ │ │ ├── RadioButton.java │ │ │ │ ├── Range.java │ │ │ │ ├── ScrollableList.java │ │ │ │ ├── Slider.java │ │ │ │ ├── Slider2D.java │ │ │ │ ├── Spacer.java │ │ │ │ ├── TODO │ │ │ │ ├── Tab.java │ │ │ │ ├── Textarea.java │ │ │ │ ├── Textfield.java │ │ │ │ ├── Textlabel.java │ │ │ │ ├── TickMark.java │ │ │ │ ├── Toggle.java │ │ │ │ ├── Tooltip.java │ │ │ │ ├── changeLog.txt │ │ │ │ └── package.html │ │ └── install_instructions.txt │ └── mesh │ │ ├── library │ │ ├── mesh.jar │ │ └── quickhull3d.1.4.jar │ │ └── source │ │ ├── Delaunay.java │ │ ├── Hull.java │ │ ├── IntArray.java │ │ ├── LinkedArray.java │ │ ├── LinkedIndex.java │ │ ├── MPolygon.java │ │ └── Voronoi.java ├── moreSorts │ └── moreSorts.pde ├── newSorts │ └── newSorts.pde ├── timeWarp │ └── timeWarp.pde └── turingTest │ └── turingTest.pde ├── README.md └── p5 ├── addons ├── p5.dom.js └── p5.sound.js ├── p5.js ├── p5.min.js └── projects ├── drunkBalls └── drunkBalls.html ├── imageGlitch ├── DOM_examples_test.html ├── imageGlitch.html ├── imageGlitch_files │ └── p5.js ├── shift_and_sort.html ├── swapLines_swapCols.html ├── template.html ├── vectorDisplace.html └── weatherDisplace.html ├── index.html ├── sketch.js └── template.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/.gitignore -------------------------------------------------------------------------------- /Processing 2.2.1/CA/CA.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/CA/CA.pde -------------------------------------------------------------------------------- /Processing 2.2.1/CA/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/CA/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/IsoSkeletonExample_MOD/Ball.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/IsoSkeletonExample_MOD/Ball.pde -------------------------------------------------------------------------------- /Processing 2.2.1/IsoSkeletonExample_MOD/IsoSkeletonExample_MOD.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/IsoSkeletonExample_MOD/IsoSkeletonExample_MOD.pde -------------------------------------------------------------------------------- /Processing 2.2.1/IsoSkeletonExample_MOD/Point.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/IsoSkeletonExample_MOD/Point.pde -------------------------------------------------------------------------------- /Processing 2.2.1/IsoSkeletonExample_MOD/key_bindings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/IsoSkeletonExample_MOD/key_bindings.pde -------------------------------------------------------------------------------- /Processing 2.2.1/PCI_Tests/PCI_Tests.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/PCI_Tests/PCI_Tests.pde -------------------------------------------------------------------------------- /Processing 2.2.1/ParticleWater/Ball.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/ParticleWater/Ball.pde -------------------------------------------------------------------------------- /Processing 2.2.1/ParticleWater/ParticleWater.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/ParticleWater/ParticleWater.pde -------------------------------------------------------------------------------- /Processing 2.2.1/PopulationStudy/Colony.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/PopulationStudy/Colony.pde -------------------------------------------------------------------------------- /Processing 2.2.1/PopulationStudy/ColonySystem.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/PopulationStudy/ColonySystem.pde -------------------------------------------------------------------------------- /Processing 2.2.1/PopulationStudy/PopulationStudy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/PopulationStudy/PopulationStudy.pde -------------------------------------------------------------------------------- /Processing 2.2.1/PopulationStudy/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/PopulationStudy/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/Sine/Sine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/Sine/Sine.pde -------------------------------------------------------------------------------- /Processing 2.2.1/Sine/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/Sine/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/SlopeTest/SlopeTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/SlopeTest/SlopeTest.pde -------------------------------------------------------------------------------- /Processing 2.2.1/SlopeTest/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/SlopeTest/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/Spots/Spots.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/Spots/Spots.pde -------------------------------------------------------------------------------- /Processing 2.2.1/cellSort/IO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/cellSort/IO.pde -------------------------------------------------------------------------------- /Processing 2.2.1/cellSort/cellSort.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/cellSort/cellSort.pde -------------------------------------------------------------------------------- /Processing 2.2.1/cellSort/orion.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/cellSort/orion.jpeg -------------------------------------------------------------------------------- /Processing 2.2.1/cellSort/orion_nebula_complex_wide.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/cellSort/orion_nebula_complex_wide.jpeg -------------------------------------------------------------------------------- /Processing 2.2.1/cellSort/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/cellSort/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/climate_economies/climate_economies.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/climate_economies/climate_economies.pde -------------------------------------------------------------------------------- /Processing 2.2.1/climate_economies/input/pindex.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/climate_economies/input/pindex.csv -------------------------------------------------------------------------------- /Processing 2.2.1/dataViz/GUI.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/dataViz/GUI.pde -------------------------------------------------------------------------------- /Processing 2.2.1/dataViz/dataViz.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/dataViz/dataViz.pde -------------------------------------------------------------------------------- /Processing 2.2.1/dataViz/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/dataViz/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/encode_decode/Counter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/encode_decode/Counter.pde -------------------------------------------------------------------------------- /Processing 2.2.1/encode_decode/FlipFlop.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/encode_decode/FlipFlop.pde -------------------------------------------------------------------------------- /Processing 2.2.1/encode_decode/Register.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/encode_decode/Register.pde -------------------------------------------------------------------------------- /Processing 2.2.1/encode_decode/encode_decode.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/encode_decode/encode_decode.pde -------------------------------------------------------------------------------- /Processing 2.2.1/encode_decode/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/encode_decode/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/find_and_replace/find_and_replace.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/find_and_replace/find_and_replace.pde -------------------------------------------------------------------------------- /Processing 2.2.1/find_and_replace/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/find_and_replace/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/gaussian_noise_stepped_gradient/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/gaussian_noise_stepped_gradient/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/imageTools/GUI.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/imageTools/GUI.pde -------------------------------------------------------------------------------- /Processing 2.2.1/imageTools/LFO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/imageTools/LFO.pde -------------------------------------------------------------------------------- /Processing 2.2.1/imageTools/imageTools.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/imageTools/imageTools.pde -------------------------------------------------------------------------------- /Processing 2.2.1/imageTools/orion_nebula_complex_wide.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/imageTools/orion_nebula_complex_wide.jpeg -------------------------------------------------------------------------------- /Processing 2.2.1/image_displace/image_displace.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/image_displace/image_displace.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/ComputationalGeometry/library.properties -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/reference/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/ComputationalGeometry/reference/help-doc.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/reference/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/ComputationalGeometry/reference/index-all.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/ComputationalGeometry/reference/index.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/reference/package-list: -------------------------------------------------------------------------------- 1 | ComputationalGeometry 2 | quickhull3d 3 | -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/ComputationalGeometry/reference/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/ComputationalGeometry/reference/stylesheet.css -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/examples/use/ControlP5beginEnd/ControlP5beginEnd.pde: -------------------------------------------------------------------------------- 1 | // TBD 2 | -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/library.properties -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/reference/index.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/reference/package-list: -------------------------------------------------------------------------------- 1 | controlP5 2 | -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/reference/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/reference/script.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/src/controlP5/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/controlP5-2.2.5/controlP5/src/controlP5/TODO -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/controlP5-2.2.5/install_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/controlP5-2.2.5/install_instructions.txt -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/reference/hemesh/core/REF_ColorExport/meshes6/test.mtl: -------------------------------------------------------------------------------- 1 | # generated by HET_OBJWriter 2 | -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/spielerei/Pulsar/Pulsar.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/examples/spielerei/Pulsar/Pulsar.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/spielerei/Sponge/Sponge.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/examples/spielerei/Sponge/Sponge.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/spielerei/TetraMass/Node.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/examples/spielerei/TetraMass/Node.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/spielerei/TwinIso/TwinIso.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/examples/spielerei/TwinIso/TwinIso.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/tutorial/Halfedge/Halfedge.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/examples/tutorial/Halfedge/Halfedge.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/examples/tutorial/Tut004_Mesh_Saving/box.mtl: -------------------------------------------------------------------------------- 1 | # generated by HET_OBJWriter 2 | -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library.properties -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library/hemesh-external.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library/hemesh-external.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library/hemesh.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library/hemesh.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library/javolution-6.1.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library/javolution-6.1.0.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library/jts.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library/jts.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/library/trove-3.1a1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/library/trove-3.1a1.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e___face_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e___face_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e___mesh_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e___mesh_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e___path_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e___path_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e___r_a_s_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e___r_a_s_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e___vertex_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e___vertex_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___box_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___box_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___cone_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___cone_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___copy_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___copy_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___cube_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___cube_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___dual_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___dual_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___grid_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___grid_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___tube_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_c___tube_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_m___bend_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_m___bend_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_h_e_m___skew_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_h_e_m___skew_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_tri___point_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_tri___point_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___bezier_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___bezier_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___circle_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___circle_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___curve_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___curve_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___danzer_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___danzer_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___frame_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___frame_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___line_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___line_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___linear_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___linear_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___m33_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___m33_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___m44_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___m44_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___map_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___map_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___math_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___math_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___mesh_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___mesh_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___plane_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___plane_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___point_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___point_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___quad_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___quad_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___ray_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___ray_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___render_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___render_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___ring_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___ring_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___sphere_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___sphere_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___tween_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___tween_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/_w_b___vector_8java.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/_w_b___vector_8java.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/annotated.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/classes.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/deprecated.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/doxygen.css -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/dynsections.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/files.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_g.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_h.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_i.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_j.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_k.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_l.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_m.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_n.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_o.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_p.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_q.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_r.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_s.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_t.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_u.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_v.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_w.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_x.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_y.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_func_z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_func_z.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_g.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_h.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_i.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_j.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_k.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_l.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_m.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_n.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_o.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_p.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_q.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_r.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_s.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_t.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_u.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_v.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_g.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_h.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_i.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_j.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_k.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_l.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_m.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_n.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_o.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_p.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_q.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_q.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_r.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_s.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_t.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_u.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_u.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_v.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_w.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_x.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_y.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_vars_z.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_w.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_x.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_x.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_y.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_y.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/functions_z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/functions_z.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/hierarchy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/hierarchy.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/index.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/jquery.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/namespaces.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/namespaces.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/namespacewblut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/namespacewblut.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/pages.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_1.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_1.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_10.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_10.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_11.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_11.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_12.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_12.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_13.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_13.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_14.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_14.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_15.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_15.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_16.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_16.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_17.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_17.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_18.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_18.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_19.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_19.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_1a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_1a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_1a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_2.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_2.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_3.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_3.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_4.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_4.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_5.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_5.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_6.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_6.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_7.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_7.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_8.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_8.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_9.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_9.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_b.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_c.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_d.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_e.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/all_f.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_1.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_1.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_2.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_2.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_3.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_3.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_4.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_4.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_5.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_5.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_6.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_6.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_7.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_7.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_8.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_8.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_9.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_9.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_b.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_c.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/classes_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/classes_d.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_1.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_1.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_2.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/files_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/files_2.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_10.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_10.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_11.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_11.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_12.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_12.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_13.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_13.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_14.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_14.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_15.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_15.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_16.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_16.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_17.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_17.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_18.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_18.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_19.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_19.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_1a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_2.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_2.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_3.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_3.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_4.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_4.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_5.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_5.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_6.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_6.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_7.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_7.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_8.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_8.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_9.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_9.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_b.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_c.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_d.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_e.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/functions_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/functions_f.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/namespaces_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/namespaces_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/namespaces_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/namespaces_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/nomatches.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/pages_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/pages_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/search.css -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/search.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/searchdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/searchdata.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_0.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_0.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_10.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_10.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_10.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_11.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_11.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_12.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_12.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_12.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_13.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_13.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_13.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_14.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_14.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_14.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_15.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_15.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_15.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_16.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_16.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_16.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_17.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_17.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_17.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_18.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_18.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_18.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_19.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_19.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_19.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_1a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_2.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_2.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_3.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_3.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_4.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_4.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_5.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_5.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_6.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_6.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_7.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_7.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_8.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_8.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_9.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_9.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_a.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_a.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_b.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_b.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_c.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_c.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_d.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_d.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_e.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_e.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_f.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/search/variables_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/search/variables_f.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/hemesh/reference/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/hemesh/reference/html/tabs.css -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/library/mesh.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/library/mesh.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/library/quickhull3d.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/library/quickhull3d.1.4.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/Delaunay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/Delaunay.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/Hull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/Hull.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/IntArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/IntArray.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/LinkedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/LinkedArray.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/LinkedIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/LinkedIndex.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/MPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/MPolygon.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/mesh/source/Voronoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/mesh/source/Voronoi.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/examples/HelloPeasy/HelloPeasy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/examples/HelloPeasy/HelloPeasy.pde -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/library.properties -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/library/peasycam.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/library/peasycam.jar -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/allclasses-frame.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/allclasses-noframe.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/constant-values.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/deprecated-list.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/help-doc.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/index-all.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/index.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/overview-frame.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/overview-summary.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/overview-tree.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/package-list -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/CameraState.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/CameraState.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/DampedAction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/DampedAction.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/PeasyCam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/PeasyCam.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/PeasyDragHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/PeasyDragHandler.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/package-frame.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/package-summary.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/peasy/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/peasy/package-tree.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/script.js -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/serialized-form.html -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/reference/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/reference/stylesheet.css -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/CameraState.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/CameraState.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/DampedAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/DampedAction.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/InterpolationManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/InterpolationManager.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/InterpolationUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/InterpolationUtil.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/PeasyCam.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/PeasyCam.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/PeasyDragHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/PeasyDragHandler.java -------------------------------------------------------------------------------- /Processing 2.2.1/libraries/peasycam/src/peasy/PeasyWheelHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/libraries/peasycam/src/peasy/PeasyWheelHandler.java -------------------------------------------------------------------------------- /Processing 2.2.1/lineSweeper/lineSweeper.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/lineSweeper/lineSweeper.pde -------------------------------------------------------------------------------- /Processing 2.2.1/lineSweeper/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/lineSweeper/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/linear_fade/linear_fade.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/linear_fade/linear_fade.pde -------------------------------------------------------------------------------- /Processing 2.2.1/linear_fade/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/linear_fade/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/multipleWindows/multipleWindows.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/multipleWindows/multipleWindows.pde -------------------------------------------------------------------------------- /Processing 2.2.1/multipleWindows/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/multipleWindows/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/neworkStudy/Edge.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/neworkStudy/Edge.pde -------------------------------------------------------------------------------- /Processing 2.2.1/neworkStudy/Node.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/neworkStudy/Node.pde -------------------------------------------------------------------------------- /Processing 2.2.1/neworkStudy/neworkStudy.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/neworkStudy/neworkStudy.pde -------------------------------------------------------------------------------- /Processing 2.2.1/neworkStudy/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/neworkStudy/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/pixelCritters/pixelCritters.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/pixelCritters/pixelCritters.pde -------------------------------------------------------------------------------- /Processing 2.2.1/pixelCritters/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/pixelCritters/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/pixelStax/pixelStax.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/pixelStax/pixelStax.pde -------------------------------------------------------------------------------- /Processing 2.2.1/pixelStax/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/pixelStax/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/point_density/point_density.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/point_density/point_density.pde -------------------------------------------------------------------------------- /Processing 2.2.1/point_density/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/point_density/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/radiallines/radiallines.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/radiallines/radiallines.pde -------------------------------------------------------------------------------- /Processing 2.2.1/radiallines/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/radiallines/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/sequenceCleaner/sequenceCleaner.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/sequenceCleaner/sequenceCleaner.pde -------------------------------------------------------------------------------- /Processing 2.2.1/sketch_2DCA/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/sketch_2DCA/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/sketch_2DCA/sketch_2DCA.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/sketch_2DCA/sketch_2DCA.pde -------------------------------------------------------------------------------- /Processing 2.2.1/textures/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/textures/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/textures/textures.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/textures/textures.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift/Block.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift/Block.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift/Block_Flock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift/Block_Flock.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift/fileHandlers.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift/fileHandlers.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift/vectorDrift.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift/vectorDrift.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift_002/Block.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift_002/Block.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift_002/Block_Flock.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift_002/Block_Flock.pde -------------------------------------------------------------------------------- /Processing 2.2.1/vectorDrift_002/vectorDrift_002.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/vectorDrift_002/vectorDrift_002.pde -------------------------------------------------------------------------------- /Processing 2.2.1/videoSort/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/videoSort/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/videoSort/videoSort.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/videoSort/videoSort.pde -------------------------------------------------------------------------------- /Processing 2.2.1/wobble/FileHandlers.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/wobble/FileHandlers.pde -------------------------------------------------------------------------------- /Processing 2.2.1/wobble/keyBindings.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/wobble/keyBindings.pde -------------------------------------------------------------------------------- /Processing 2.2.1/wobble/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/wobble/sketch.properties -------------------------------------------------------------------------------- /Processing 2.2.1/wobble/wobble.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 2.2.1/wobble/wobble.pde -------------------------------------------------------------------------------- /Processing 3/BeadsTest/BeadsTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/BeadsTest/BeadsTest.pde -------------------------------------------------------------------------------- /Processing 3/CA/CA.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/CA/CA.pde -------------------------------------------------------------------------------- /Processing 3/CellSort/CellSort.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/CellSort/CellSort.pde -------------------------------------------------------------------------------- /Processing 3/CellSort/IO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/CellSort/IO.pde -------------------------------------------------------------------------------- /Processing 3/CellSort/Pixel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/CellSort/Pixel.pde -------------------------------------------------------------------------------- /Processing 3/CellSort/controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/CellSort/controls.pde -------------------------------------------------------------------------------- /Processing 3/GifCrippler/GifCrippler.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/GifCrippler/GifCrippler.pde -------------------------------------------------------------------------------- /Processing 3/GifCrippler/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/GifCrippler/sketch.properties -------------------------------------------------------------------------------- /Processing 3/HelloNoise/HelloNoise.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/HelloNoise/HelloNoise.pde -------------------------------------------------------------------------------- /Processing 3/KIMBRA_02/KIMBRA_02.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/KIMBRA_02/KIMBRA_02.pde -------------------------------------------------------------------------------- /Processing 3/KIMBRA_02/Point.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/KIMBRA_02/Point.pde -------------------------------------------------------------------------------- /Processing 3/KIMBRA_02/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/KIMBRA_02/sketch.properties -------------------------------------------------------------------------------- /Processing 3/LangstonSort/Ant.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/Ant.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/IO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/IO.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/LangstonSort.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/LangstonSort.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/LangstonSort.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? 2 | -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/source/Ant.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/application.macosx/source/Ant.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/source/IO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/application.macosx/source/IO.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/source/LangstonSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/application.macosx/source/LangstonSort.java -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/source/LangstonSort.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/application.macosx/source/LangstonSort.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/application.macosx/source/controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/application.macosx/source/controls.pde -------------------------------------------------------------------------------- /Processing 3/LangstonSort/controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/LangstonSort/controls.pde -------------------------------------------------------------------------------- /Processing 3/MarbleScan/MarbleScan.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/MarbleScan/MarbleScan.pde -------------------------------------------------------------------------------- /Processing 3/PC_FR/PC_FR.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/PC_FR/PC_FR.pde -------------------------------------------------------------------------------- /Processing 3/copy_paste_test/copy_paste_test.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/copy_paste_test/copy_paste_test.pde -------------------------------------------------------------------------------- /Processing 3/drunkBubbles/drunkBubbles.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/drunkBubbles/drunkBubbles.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/Force.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/Force.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/IO.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/IO.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/Node.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/Node.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/Pixel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/Pixel.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/controls.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/controls.pde -------------------------------------------------------------------------------- /Processing 3/forceOfHabit/forceOfHabit.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/forceOfHabit/forceOfHabit.pde -------------------------------------------------------------------------------- /Processing 3/imageReformatter/imageReformatter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/imageReformatter/imageReformatter.pde -------------------------------------------------------------------------------- /Processing 3/imageTools_002/imageTools_002.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/imageTools_002/imageTools_002.pde -------------------------------------------------------------------------------- /Processing 3/langston_s_ant/langston_s_ant.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/langston_s_ant/langston_s_ant.pde -------------------------------------------------------------------------------- /Processing 3/langston_s_ant/langston_s_ant_pde/langston_s_ant_pde.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/langston_s_ant/langston_s_ant_pde/langston_s_ant_pde.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_CoolSliders/G4P_CoolSliders.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_CoolSliders/G4P_CoolSliders.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Dialogs/G4P_Dialogs.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Dialogs/G4P_Dialogs.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_EditTextControls/data/book3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_EditTextControls/data/book3.txt -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_GroupControls/data/list_493061: -------------------------------------------------------------------------------- 1 | Red 2 | Green 3 | Yellow 4 | Purple 5 | Orange 6 | Cyan 7 | Blue 8 | Gold 9 | 10 | -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_GroupControls/data/list_679847: -------------------------------------------------------------------------------- 1 | Aardvark 2 | Butterfly 3 | Cat 4 | Donkey 5 | Elephant 6 | Flamingo 7 | Giraffe 8 | 9 | -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_GroupControls/gui.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_GroupControls/gui.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_ImageButtons/G4P_ImageButtons.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_ImageButtons/G4P_ImageButtons.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_ImgTogButton/G4P_ImgTogButton.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_ImgTogButton/G4P_ImgTogButton.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Knob_Config/G4P_Knob_Config.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Knob_Config/G4P_Knob_Config.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Knob_Config/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Knob_Config/configcontrols.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Mandelbrot/G4P_Mandelbrot.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Mandelbrot/G4P_Mandelbrot.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_RGBmixer/G4P_RGBmixer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_RGBmixer/G4P_RGBmixer.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Showcase/G4P_Showcase.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Showcase/G4P_Showcase.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Showcase/cinfigwindowcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Showcase/cinfigwindowcontrols.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Showcase/data/book.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Showcase/data/book.txt -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Showcase/showcasecontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Showcase/showcasecontrols.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Sketchpad/G4P_Sketchpad.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Sketchpad/G4P_Sketchpad.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Slider2D/G4P_Slider2D.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Slider2D/G4P_Slider2D.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Slider_Config/configcontrols.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Slider_Config/configcontrols.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Stick/G4P_Stick.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Stick/G4P_Stick.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_TextAreaControl/data/book3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_TextAreaControl/data/book3.txt -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Timer/G4P_Timer.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Timer/G4P_Timer.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Toroid/G4P_Toroid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Toroid/G4P_Toroid.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_Toroid/Toroid.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_Toroid/Toroid.pde -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/examples/G4P_with_PeasyCam/code/peasycam.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/examples/G4P_with_PeasyCam/code/peasycam.jar -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/library.properties -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/library/G4P.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/library/G4P.jar -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/library/changes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/library/changes.txt -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/allclasses-frame.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/allclasses-noframe.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/constant-values.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/deprecated-list.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/Focusable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/Focusable.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/FontManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/FontManager.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/G4P.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/G4P.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GAbstractControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GAbstractControl.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GAlign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GAlign.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GButton.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GCScheme.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GCScheme.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GCheckbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GCheckbox.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GClip.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GClip.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GConstants.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GConstants.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GControlMode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GControlMode.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GCustomSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GCustomSlider.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GDropList.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GDropList.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GEvent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GEvent.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GGroup.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GImageButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GImageButton.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GKnob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GKnob.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GLabel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GLabel.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GOption.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GOption.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GPanel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GPanel.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GPassword.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GPassword.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GSketchPad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GSketchPad.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GSlider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GSlider.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GSlider2D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GSlider2D.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GStick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GStick.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTabManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTabManager.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTextAlign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTextAlign.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTextArea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTextArea.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTextBase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTextBase.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTextField.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTextField.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GTimer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GTimer.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GToggleControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GToggleControl.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GToggleGroup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GToggleGroup.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GValueControl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GValueControl.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GValueControl2D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GValueControl2D.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GWinData.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GWinData.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GWindow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GWindow.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GWindowAWT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GWindowAWT.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GWindowImpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GWindowImpl.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/GWindowNEWT.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/GWindowNEWT.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/ImageManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/ImageManager.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/StyledString.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/StyledString.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/package-frame.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/package-summary.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/g4p_controls/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/g4p_controls/package-tree.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/help-doc.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/index-all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/index-all.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/index.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/overview-tree.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/package-list: -------------------------------------------------------------------------------- 1 | g4p_controls 2 | -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/serialized-form.html -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/reference/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/reference/stylesheet.css -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/ColorPreviewPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/ColorPreviewPanel.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/FileChooserFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/FileChooserFilter.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/FilenameChooserFilter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/FilenameChooserFilter.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/Focusable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/Focusable.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/FontManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/FontManager.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/G4P.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/G4P.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GAbstractControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GAbstractControl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GAlign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GAlign.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GButton.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GCScheme.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GCScheme.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GCheckbox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GCheckbox.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GClip.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GClip.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GConstants.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GConstantsInternal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GConstantsInternal.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GControlMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GControlMode.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GCustomSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GCustomSlider.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GDropList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GDropList.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GEditableTextControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GEditableTextControl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GEvent.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GGroup.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GImageButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GImageButton.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GImageToggleButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GImageToggleButton.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GKnob.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GKnob.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GLabel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GLabel.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GLinearTrackControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GLinearTrackControl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GMessenger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GMessenger.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GOption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GOption.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GPanel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GPanel.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GPassword.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GPassword.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GScrollbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GScrollbar.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GSketchPad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GSketchPad.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GSlider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GSlider.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GSlider2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GSlider2D.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GStick.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GStick.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTabManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTabManager.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTextAlign.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTextAlign.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTextArea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTextArea.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTextBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTextBase.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTextField.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTextField.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTextIconAlignBase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTextIconAlignBase.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GTimer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GTimer.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GToggleControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GToggleControl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GToggleGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GToggleGroup.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GValueControl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GValueControl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GValueControl2D.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GValueControl2D.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GWinData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GWinData.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GWindow.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GWindow.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GWindowAWT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GWindowAWT.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GWindowImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GWindowImpl.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/GWindowNEWT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/GWindowNEWT.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/HotSpot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/HotSpot.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/ImageManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/ImageManager.java -------------------------------------------------------------------------------- /Processing 3/libraries/G4P/src/g4p_controls/StyledString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/G4P/src/g4p_controls/StyledString.java -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/examples/use/ControlP5beginEnd/ControlP5beginEnd.pde: -------------------------------------------------------------------------------- 1 | // TBD 2 | -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/library.properties -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/library/controlP5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/library/controlP5.jar -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/reference/index.html -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/reference/package-list: -------------------------------------------------------------------------------- 1 | controlP5 2 | -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/reference/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/reference/script.js -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/src/controlP5/CP.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/src/controlP5/CP.java -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/controlP5/src/controlP5/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/controlP5/src/controlP5/TODO -------------------------------------------------------------------------------- /Processing 3/libraries/controlP5-2.2.5/install_instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/controlP5-2.2.5/install_instructions.txt -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/library/mesh.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/library/mesh.jar -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/library/quickhull3d.1.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/library/quickhull3d.1.4.jar -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/Delaunay.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/Delaunay.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/Hull.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/Hull.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/IntArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/IntArray.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/LinkedArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/LinkedArray.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/LinkedIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/LinkedIndex.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/MPolygon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/MPolygon.java -------------------------------------------------------------------------------- /Processing 3/libraries/mesh/source/Voronoi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/libraries/mesh/source/Voronoi.java -------------------------------------------------------------------------------- /Processing 3/moreSorts/moreSorts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/moreSorts/moreSorts.pde -------------------------------------------------------------------------------- /Processing 3/newSorts/newSorts.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/newSorts/newSorts.pde -------------------------------------------------------------------------------- /Processing 3/timeWarp/timeWarp.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/timeWarp/timeWarp.pde -------------------------------------------------------------------------------- /Processing 3/turingTest/turingTest.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/Processing 3/turingTest/turingTest.pde -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/README.md -------------------------------------------------------------------------------- /p5/addons/p5.dom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/addons/p5.dom.js -------------------------------------------------------------------------------- /p5/addons/p5.sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/addons/p5.sound.js -------------------------------------------------------------------------------- /p5/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/p5.js -------------------------------------------------------------------------------- /p5/p5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/p5.min.js -------------------------------------------------------------------------------- /p5/projects/drunkBalls/drunkBalls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/drunkBalls/drunkBalls.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/DOM_examples_test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/DOM_examples_test.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/imageGlitch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/imageGlitch.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/imageGlitch_files/p5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/imageGlitch_files/p5.js -------------------------------------------------------------------------------- /p5/projects/imageGlitch/shift_and_sort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/shift_and_sort.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/swapLines_swapCols.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/swapLines_swapCols.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/template.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/vectorDisplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/vectorDisplace.html -------------------------------------------------------------------------------- /p5/projects/imageGlitch/weatherDisplace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/imageGlitch/weatherDisplace.html -------------------------------------------------------------------------------- /p5/projects/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/index.html -------------------------------------------------------------------------------- /p5/projects/sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/sketch.js -------------------------------------------------------------------------------- /p5/projects/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phillipdavidstearns/aYearInCode/HEAD/p5/projects/template.html --------------------------------------------------------------------------------