├── .gitignore ├── BLOBables.pde ├── ControlFrame.pde ├── ControlFrameSimple.pde ├── DisplayMachine.pde ├── DrawPixelsWindow.pde ├── FileLoading.pde ├── Machine.pde ├── MachineExecWindow.pde ├── MachineStoreWindow.pde ├── Misc.pde ├── Panel.pde ├── Polargraphsd spec.properties.txt ├── README.md ├── Rectangle.pde ├── SerialPortWindow.pde ├── controlsActions.pde ├── controlsActionsWindows.pde ├── controlsSetup.pde ├── data ├── a.png ├── b.png ├── dpadlr.png ├── dpadud.png ├── gradient.jpg ├── gradient.pbm ├── highrect.svg ├── midsquare.svg ├── midsquares.svg ├── x.png └── y.png ├── drawing.pde ├── gpl.txt ├── ikea.properties.txt ├── polargraphcontroller.pde ├── queue.pde ├── tabSetup.pde └── trace.pde /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/.gitignore -------------------------------------------------------------------------------- /BLOBables.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/BLOBables.pde -------------------------------------------------------------------------------- /ControlFrame.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/ControlFrame.pde -------------------------------------------------------------------------------- /ControlFrameSimple.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/ControlFrameSimple.pde -------------------------------------------------------------------------------- /DisplayMachine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/DisplayMachine.pde -------------------------------------------------------------------------------- /DrawPixelsWindow.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/DrawPixelsWindow.pde -------------------------------------------------------------------------------- /FileLoading.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/FileLoading.pde -------------------------------------------------------------------------------- /Machine.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/Machine.pde -------------------------------------------------------------------------------- /MachineExecWindow.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/MachineExecWindow.pde -------------------------------------------------------------------------------- /MachineStoreWindow.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/MachineStoreWindow.pde -------------------------------------------------------------------------------- /Misc.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/Misc.pde -------------------------------------------------------------------------------- /Panel.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/Panel.pde -------------------------------------------------------------------------------- /Polargraphsd spec.properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/Polargraphsd spec.properties.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/README.md -------------------------------------------------------------------------------- /Rectangle.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/Rectangle.pde -------------------------------------------------------------------------------- /SerialPortWindow.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/SerialPortWindow.pde -------------------------------------------------------------------------------- /controlsActions.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/controlsActions.pde -------------------------------------------------------------------------------- /controlsActionsWindows.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/controlsActionsWindows.pde -------------------------------------------------------------------------------- /controlsSetup.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/controlsSetup.pde -------------------------------------------------------------------------------- /data/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/a.png -------------------------------------------------------------------------------- /data/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/b.png -------------------------------------------------------------------------------- /data/dpadlr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/dpadlr.png -------------------------------------------------------------------------------- /data/dpadud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/dpadud.png -------------------------------------------------------------------------------- /data/gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/gradient.jpg -------------------------------------------------------------------------------- /data/gradient.pbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/gradient.pbm -------------------------------------------------------------------------------- /data/highrect.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/highrect.svg -------------------------------------------------------------------------------- /data/midsquare.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/midsquare.svg -------------------------------------------------------------------------------- /data/midsquares.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/midsquares.svg -------------------------------------------------------------------------------- /data/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/x.png -------------------------------------------------------------------------------- /data/y.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/data/y.png -------------------------------------------------------------------------------- /drawing.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/drawing.pde -------------------------------------------------------------------------------- /gpl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/gpl.txt -------------------------------------------------------------------------------- /ikea.properties.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/ikea.properties.txt -------------------------------------------------------------------------------- /polargraphcontroller.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/polargraphcontroller.pde -------------------------------------------------------------------------------- /queue.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/queue.pde -------------------------------------------------------------------------------- /tabSetup.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/tabSetup.pde -------------------------------------------------------------------------------- /trace.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/euphy/polargraphcontroller/HEAD/trace.pde --------------------------------------------------------------------------------