gitextract_kpn2r3z0/ ├── .gitignore ├── Handy/ │ ├── examples/ │ │ ├── simple1/ │ │ │ └── simple1.pde │ │ ├── simpleColourStyles/ │ │ │ └── simpleColourStyles.pde │ │ ├── simpleHachureStyles/ │ │ │ └── simpleHachureStyles.pde │ │ ├── simplePresetStyles/ │ │ │ └── simplePresetStyles.pde │ │ └── stickFigure/ │ │ └── stickFigure.pde │ ├── reference/ │ │ ├── allclasses-frame.html │ │ ├── allclasses-noframe.html │ │ ├── constant-values.html │ │ ├── deprecated-list.html │ │ ├── help-doc.html │ │ ├── index-files/ │ │ │ ├── index-1.html │ │ │ ├── index-10.html │ │ │ ├── index-11.html │ │ │ ├── index-12.html │ │ │ ├── index-13.html │ │ │ ├── index-14.html │ │ │ ├── index-15.html │ │ │ ├── index-16.html │ │ │ ├── index-17.html │ │ │ ├── index-2.html │ │ │ ├── index-3.html │ │ │ ├── index-4.html │ │ │ ├── index-5.html │ │ │ ├── index-6.html │ │ │ ├── index-7.html │ │ │ ├── index-8.html │ │ │ └── index-9.html │ │ ├── index.html │ │ ├── org/ │ │ │ └── gicentre/ │ │ │ └── handy/ │ │ │ ├── HandyPresets.html │ │ │ ├── HandyRecorder.html │ │ │ ├── HandyRenderer.html │ │ │ ├── Simplifier.html │ │ │ ├── Version.html │ │ │ ├── class-use/ │ │ │ │ ├── HandyPresets.html │ │ │ │ ├── HandyRecorder.html │ │ │ │ ├── HandyRenderer.html │ │ │ │ ├── Simplifier.html │ │ │ │ └── Version.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── overview-tree.html │ │ ├── package-list │ │ ├── script.js │ │ └── stylesheet.css │ └── src/ │ ├── COPYING │ ├── COPYING.LESSER │ ├── data/ │ │ ├── HumorSans-18.vlw │ │ └── HumorSans-32.vlw │ └── org/ │ └── gicentre/ │ ├── handy/ │ │ ├── HachureIterator.java │ │ ├── HandyPresets.java │ │ ├── HandyRecorder.java │ │ ├── HandyRenderer.java │ │ ├── Segment.java │ │ ├── Simplifier.java │ │ ├── Version.java │ │ └── package.html │ └── tests/ │ ├── ArcTest.java │ ├── BoxTest.java │ ├── ChartTest.java │ ├── CircleTest.java │ ├── ConeTest.java │ ├── CurvedLinesTest.java │ ├── GraphExample.java │ ├── HandyRecorder2dTest.java │ ├── HandyRecorder3dTest.java │ ├── Line3dTest.java │ ├── LineTest.java │ ├── OffscreenBufferTest.java │ ├── PDFAndSVGTest.java │ ├── PresetStyleTest.java │ ├── PrototypeTest.java │ ├── ShapeTest.java │ ├── ShapeVertexTest.java │ └── Vertex3DTest.java └── README.md