├── .gitignore ├── README.md ├── config.py ├── lib ├── __init__.py ├── commandProcessor.py ├── machine.py └── serialConnection.py ├── requirements.txt ├── server.py ├── static ├── css │ ├── bootstrap-theme.min.css │ ├── bootstrap.min.css │ ├── dashboard.css │ └── main.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── img │ └── Raspberry-Pi-CNC-User-Interface.png ├── index.html ├── js │ ├── bootstrap.min.js │ ├── gcode-viewer │ │ ├── LICENSE.txt │ │ ├── README │ │ ├── Three.js │ │ ├── TrackballControls.js │ │ ├── gcode-model.js │ │ ├── gcode-parser.js │ │ ├── index.html │ │ ├── jquery.min.js │ │ ├── renderer.js │ │ ├── sample.gcode │ │ └── ui.js │ ├── jquery.min.js │ ├── main.js │ ├── socket.io-1.3.4.js │ └── socket.io.min.js └── jscut │ ├── CNAME │ ├── COPYING │ ├── Makefile │ ├── Material.svg │ ├── README.md │ ├── RenderPath.html │ ├── api │ ├── js │ │ ├── cam.js │ │ ├── data.js │ │ ├── geometry.js │ │ ├── parseGcode.js │ │ └── svg.js │ ├── jscut-app-layout.html │ ├── jscut-cam.html │ ├── jscut-form.html │ ├── jscut-geometry.html │ ├── jscut-material-form.html │ ├── jscut-simulate-gcode.html │ ├── jscut-stretch-svg.html │ ├── jscut-svg.html │ ├── jscut-tabbed-pages.html │ └── jscut-tool-form.html │ ├── app.yaml │ ├── bower.json │ ├── bower_components │ ├── core-collapse │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-collapse.css │ │ ├── core-collapse.html │ │ ├── demo.html │ │ └── index.html │ ├── core-component-page │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bowager-logo.png │ │ ├── bower.json │ │ ├── core-component-page.html │ │ ├── demo.html │ │ └── index.html │ ├── core-icon │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-icon.css │ │ ├── core-icon.html │ │ ├── demo.html │ │ ├── index.html │ │ └── metadata.html │ ├── core-icons │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-icons.html │ │ ├── demo.html │ │ ├── iconsets │ │ │ ├── av-icons.html │ │ │ ├── communication-icons.html │ │ │ ├── device-icons.html │ │ │ ├── hardware-icons.html │ │ │ ├── icons.html │ │ │ ├── image-icons.html │ │ │ ├── maps-icons.html │ │ │ ├── notification-icons.html │ │ │ ├── png-icons.html │ │ │ └── social-icons.html │ │ └── index.html │ ├── core-iconset-svg │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-iconset-svg.html │ │ ├── demo.html │ │ ├── index.html │ │ └── svg-sample-icons.html │ ├── core-iconset │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-iconset.html │ │ ├── demo.html │ │ ├── index.html │ │ └── my-icons.png │ ├── core-input │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-input.css │ │ ├── core-input.html │ │ ├── demo.html │ │ ├── index.html │ │ └── metadata.html │ ├── core-localstorage │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-localstorage.html │ │ ├── demo.html │ │ └── index.html │ ├── core-meta │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-meta.html │ │ ├── demo.html │ │ └── index.html │ ├── core-pages │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-pages.css │ │ ├── core-pages.html │ │ ├── demo.html │ │ ├── index.html │ │ └── metadata.html │ ├── core-range │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-range.html │ │ ├── demo.html │ │ └── index.html │ ├── core-selection │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-selection.html │ │ ├── demo.html │ │ └── index.html │ ├── core-selector │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── core-selector.html │ │ ├── demo.html │ │ ├── index.html │ │ └── metadata.html │ ├── font-roboto │ │ ├── .bower.json │ │ └── roboto.html │ ├── paper-button │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── demo2.html │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-button.css │ │ └── paper-button.html │ ├── paper-focusable │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ └── paper-focusable.html │ ├── paper-input │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── demo2.html │ │ ├── error-100.png │ │ ├── error-200.png │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-input.css │ │ └── paper-input.html │ ├── paper-progress │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-progress.css │ │ └── paper-progress.html │ ├── paper-ripple │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-ripple.html │ │ └── raw.html │ ├── paper-shadow │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-shadow.css │ │ └── paper-shadow.html │ ├── paper-slider │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── demo.html │ │ ├── index.html │ │ ├── metadata.html │ │ ├── paper-slider.css │ │ └── paper-slider.html │ ├── platform │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── platform.js │ │ └── platform.js.map │ └── polymer │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── layout.html │ │ ├── polymer.html │ │ ├── polymer.js │ │ └── polymer.js.map │ ├── config.js │ ├── config_standalone.js │ ├── cpp │ ├── FlexScan.h │ ├── cam.cpp │ ├── cam.h │ ├── hspocket.cpp │ ├── offset.h │ ├── separateTabs.cpp │ └── vEngrave.cpp │ ├── index.html │ ├── js │ ├── Cam.js │ ├── GcodeConversionViewModel.js │ ├── MaterialViewModel.js │ ├── OperationsViewModel.js │ ├── RenderPath.js │ ├── SelectionViewModel.js │ ├── SvgViewModel.js │ ├── TabsViewModel.js │ ├── UnitConverter.js │ ├── basicFragmentShader.txt │ ├── basicVertexShader.txt │ ├── jscut.js │ ├── path.js │ ├── rasterizePathFragmentShader.txt │ ├── rasterizePathVertexShader.txt │ ├── renderHeightMapFragmentShader.txt │ └── renderHeightMapVertexShader.txt │ ├── jscut.css │ ├── jscut.html │ ├── lib │ ├── FileSaver.js │ ├── bootstrap-3.1.1 │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ └── bootstrap.min.js │ ├── bootstrap-slider.min.css │ ├── bootstrap-slider.min.js │ ├── clipper_unminified-6.1.3.2.js │ ├── gl-matrix-2.2.0-min.js │ ├── jquery-2.1.1.min.js │ ├── knockout-3.1.0.js │ ├── snap-0.3.0.svg.js │ └── webgl-utils.js │ ├── logo-both.svg │ ├── logo-circle.svg │ ├── logo-diff.svg │ ├── logo-gcode.txt │ ├── logo-text.svg │ ├── test.svg │ ├── test │ ├── test-jscut-cam.html │ ├── test-jscut-geometry.html │ ├── test-jscut-simulate-gcode.html │ └── test-wizard.html │ └── todo.txt └── unittests ├── __init__.py ├── chat-server.js ├── package.json ├── test.py └── test └── test-chat-server.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/config.py -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/commandProcessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/lib/commandProcessor.py -------------------------------------------------------------------------------- /lib/machine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/lib/machine.py -------------------------------------------------------------------------------- /lib/serialConnection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/lib/serialConnection.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/server.py -------------------------------------------------------------------------------- /static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/css/dashboard.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/img/Raspberry-Pi-CNC-User-Interface.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/img/Raspberry-Pi-CNC-User-Interface.png -------------------------------------------------------------------------------- /static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/index.html -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/LICENSE.txt -------------------------------------------------------------------------------- /static/js/gcode-viewer/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/README -------------------------------------------------------------------------------- /static/js/gcode-viewer/Three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/Three.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/TrackballControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/TrackballControls.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/gcode-model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/gcode-model.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/gcode-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/gcode-parser.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/index.html -------------------------------------------------------------------------------- /static/js/gcode-viewer/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/jquery.min.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/renderer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/renderer.js -------------------------------------------------------------------------------- /static/js/gcode-viewer/sample.gcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/sample.gcode -------------------------------------------------------------------------------- /static/js/gcode-viewer/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/gcode-viewer/ui.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/main.js -------------------------------------------------------------------------------- /static/js/socket.io-1.3.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/socket.io-1.3.4.js -------------------------------------------------------------------------------- /static/js/socket.io.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/js/socket.io.min.js -------------------------------------------------------------------------------- /static/jscut/CNAME: -------------------------------------------------------------------------------- 1 | jscut.org 2 | -------------------------------------------------------------------------------- /static/jscut/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/COPYING -------------------------------------------------------------------------------- /static/jscut/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/Makefile -------------------------------------------------------------------------------- /static/jscut/Material.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/Material.svg -------------------------------------------------------------------------------- /static/jscut/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/README.md -------------------------------------------------------------------------------- /static/jscut/RenderPath.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/RenderPath.html -------------------------------------------------------------------------------- /static/jscut/api/js/cam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/js/cam.js -------------------------------------------------------------------------------- /static/jscut/api/js/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/js/data.js -------------------------------------------------------------------------------- /static/jscut/api/js/geometry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/js/geometry.js -------------------------------------------------------------------------------- /static/jscut/api/js/parseGcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/js/parseGcode.js -------------------------------------------------------------------------------- /static/jscut/api/js/svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/js/svg.js -------------------------------------------------------------------------------- /static/jscut/api/jscut-app-layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-app-layout.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-cam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-cam.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-form.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-geometry.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-material-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-material-form.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-simulate-gcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-simulate-gcode.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-stretch-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-stretch-svg.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-svg.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-tabbed-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-tabbed-pages.html -------------------------------------------------------------------------------- /static/jscut/api/jscut-tool-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/api/jscut-tool-form.html -------------------------------------------------------------------------------- /static/jscut/app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/app.yaml -------------------------------------------------------------------------------- /static/jscut/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/core-collapse.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/core-collapse.css -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/core-collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/core-collapse.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-collapse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-collapse/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/bowager-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/bowager-logo.png -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/core-component-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/core-component-page.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-component-page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-component-page/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/core-icon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/core-icon.css -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/core-icon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/core-icon.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icon/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icon/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/core-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/core-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/av-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/av-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/communication-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/communication-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/device-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/device-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/hardware-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/hardware-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/image-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/image-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/maps-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/maps-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/notification-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/notification-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/png-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/png-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/iconsets/social-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/iconsets/social-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-icons/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-icons/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/core-iconset-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/core-iconset-svg.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset-svg/svg-sample-icons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset-svg/svg-sample-icons.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/core-iconset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/core-iconset.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-iconset/my-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-iconset/my-icons.png -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/core-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/core-input.css -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/core-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/core-input.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-input/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-input/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/core-localstorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/core-localstorage.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-localstorage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-localstorage/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/core-meta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/core-meta.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-meta/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-meta/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/core-pages.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/core-pages.css -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/core-pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/core-pages.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-pages/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-pages/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/core-range.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/core-range.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-range/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-range/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/core-selection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/core-selection.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selection/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/core-selector.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/core-selector.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/core-selector/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/core-selector/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/font-roboto/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/font-roboto/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/font-roboto/roboto.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/font-roboto/roboto.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/demo2.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/paper-button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/paper-button.css -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-button/paper-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-button/paper-button.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-focusable/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-focusable/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-focusable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-focusable/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-focusable/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-focusable/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-focusable/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-focusable/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-focusable/paper-focusable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-focusable/paper-focusable.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/.gitignore: -------------------------------------------------------------------------------- 1 | vulcanized.html 2 | -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/demo2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/demo2.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/error-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/error-100.png -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/error-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/error-200.png -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/paper-input.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/paper-input.css -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-input/paper-input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-input/paper-input.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/paper-progress.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/paper-progress.css -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-progress/paper-progress.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-progress/paper-progress.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/paper-ripple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/paper-ripple.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-ripple/raw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-ripple/raw.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/paper-shadow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/paper-shadow.css -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-shadow/paper-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-shadow/paper-shadow.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/demo.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/index.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/metadata.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/metadata.html -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/paper-slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/paper-slider.css -------------------------------------------------------------------------------- /static/jscut/bower_components/paper-slider/paper-slider.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/paper-slider/paper-slider.html -------------------------------------------------------------------------------- /static/jscut/bower_components/platform/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/platform/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/platform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/platform/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/platform/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/platform/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/platform/platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/platform/platform.js -------------------------------------------------------------------------------- /static/jscut/bower_components/platform/platform.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/platform/platform.js.map -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/.bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/README.md -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/bower.json -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/layout.html -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/polymer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/polymer.html -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/polymer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/polymer.js -------------------------------------------------------------------------------- /static/jscut/bower_components/polymer/polymer.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/bower_components/polymer/polymer.js.map -------------------------------------------------------------------------------- /static/jscut/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/config.js -------------------------------------------------------------------------------- /static/jscut/config_standalone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/config_standalone.js -------------------------------------------------------------------------------- /static/jscut/cpp/FlexScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/FlexScan.h -------------------------------------------------------------------------------- /static/jscut/cpp/cam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/cam.cpp -------------------------------------------------------------------------------- /static/jscut/cpp/cam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/cam.h -------------------------------------------------------------------------------- /static/jscut/cpp/hspocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/hspocket.cpp -------------------------------------------------------------------------------- /static/jscut/cpp/offset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/offset.h -------------------------------------------------------------------------------- /static/jscut/cpp/separateTabs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/separateTabs.cpp -------------------------------------------------------------------------------- /static/jscut/cpp/vEngrave.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/cpp/vEngrave.cpp -------------------------------------------------------------------------------- /static/jscut/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/index.html -------------------------------------------------------------------------------- /static/jscut/js/Cam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/Cam.js -------------------------------------------------------------------------------- /static/jscut/js/GcodeConversionViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/GcodeConversionViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/MaterialViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/MaterialViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/OperationsViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/OperationsViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/RenderPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/RenderPath.js -------------------------------------------------------------------------------- /static/jscut/js/SelectionViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/SelectionViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/SvgViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/SvgViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/TabsViewModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/TabsViewModel.js -------------------------------------------------------------------------------- /static/jscut/js/UnitConverter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/UnitConverter.js -------------------------------------------------------------------------------- /static/jscut/js/basicFragmentShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/basicFragmentShader.txt -------------------------------------------------------------------------------- /static/jscut/js/basicVertexShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/basicVertexShader.txt -------------------------------------------------------------------------------- /static/jscut/js/jscut.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/jscut.js -------------------------------------------------------------------------------- /static/jscut/js/path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/path.js -------------------------------------------------------------------------------- /static/jscut/js/rasterizePathFragmentShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/rasterizePathFragmentShader.txt -------------------------------------------------------------------------------- /static/jscut/js/rasterizePathVertexShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/rasterizePathVertexShader.txt -------------------------------------------------------------------------------- /static/jscut/js/renderHeightMapFragmentShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/renderHeightMapFragmentShader.txt -------------------------------------------------------------------------------- /static/jscut/js/renderHeightMapVertexShader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/js/renderHeightMapVertexShader.txt -------------------------------------------------------------------------------- /static/jscut/jscut.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/jscut.css -------------------------------------------------------------------------------- /static/jscut/jscut.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/jscut.html -------------------------------------------------------------------------------- /static/jscut/lib/FileSaver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/FileSaver.js -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap.css -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/js/bootstrap.js -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-3.1.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-3.1.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-slider.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-slider.min.css -------------------------------------------------------------------------------- /static/jscut/lib/bootstrap-slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/bootstrap-slider.min.js -------------------------------------------------------------------------------- /static/jscut/lib/clipper_unminified-6.1.3.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/clipper_unminified-6.1.3.2.js -------------------------------------------------------------------------------- /static/jscut/lib/gl-matrix-2.2.0-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/gl-matrix-2.2.0-min.js -------------------------------------------------------------------------------- /static/jscut/lib/jquery-2.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/jquery-2.1.1.min.js -------------------------------------------------------------------------------- /static/jscut/lib/knockout-3.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/knockout-3.1.0.js -------------------------------------------------------------------------------- /static/jscut/lib/snap-0.3.0.svg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/snap-0.3.0.svg.js -------------------------------------------------------------------------------- /static/jscut/lib/webgl-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/lib/webgl-utils.js -------------------------------------------------------------------------------- /static/jscut/logo-both.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/logo-both.svg -------------------------------------------------------------------------------- /static/jscut/logo-circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/logo-circle.svg -------------------------------------------------------------------------------- /static/jscut/logo-diff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/logo-diff.svg -------------------------------------------------------------------------------- /static/jscut/logo-gcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/logo-gcode.txt -------------------------------------------------------------------------------- /static/jscut/logo-text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/logo-text.svg -------------------------------------------------------------------------------- /static/jscut/test.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/test.svg -------------------------------------------------------------------------------- /static/jscut/test/test-jscut-cam.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/test/test-jscut-cam.html -------------------------------------------------------------------------------- /static/jscut/test/test-jscut-geometry.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/test/test-jscut-geometry.html -------------------------------------------------------------------------------- /static/jscut/test/test-jscut-simulate-gcode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/test/test-jscut-simulate-gcode.html -------------------------------------------------------------------------------- /static/jscut/test/test-wizard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/test/test-wizard.html -------------------------------------------------------------------------------- /static/jscut/todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/static/jscut/todo.txt -------------------------------------------------------------------------------- /unittests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unittests/chat-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/unittests/chat-server.js -------------------------------------------------------------------------------- /unittests/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/unittests/package.json -------------------------------------------------------------------------------- /unittests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/unittests/test.py -------------------------------------------------------------------------------- /unittests/test/test-chat-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Protoneer/Raspberry-Pi-CNC/HEAD/unittests/test/test-chat-server.js --------------------------------------------------------------------------------