Remco Veldkamp
Remco Veldkamp
This implements multi-color previews for 3D printers that can switch filaments / tools via T0,T1,..Tx. ([see T0-T7 gcode command info](https://marlinfw.org/docs/gcode/T.html)) Systems that should be supported this way include: - Prusa...
- [ ] React example - [ ] Vuejs - [ ] Svelte Should use latest versions of the lib, the framework, node, vite. Let's also doublecheck we're using the...
THREE.js no longer provides an iife build ( >= r160). This means we'll have to support the new module build and update the demo accordingly. [more info](https://threejs.org/docs/#manual/en/introduction/Installation)
The demo loads and renders a gcode file incrementally. But the method it uses [`processGCode`](https://github.com/remcoder/gcode-preview/blob/develop/src/webgl-preview.ts#L245) always does a complete render, for every chunk of gcode processed. This leads to a...
For accurate rendering using volumetric tubes (TubeGeometry) one of the first things that can be improved the radius of the tubes. For a first approximation the radius could be determined...
We want to support multi-color prints (#122). To get started we need an overview of the different flavours of multi-color printing and a few example gcode files to go with...
This ticket is for experimenting and discussing improving the performance of the rendering of volumetric tubes (currently TubeGeometry in THREEjs terms).
I've never consciously decided which members should be publicly accessible and which shouldn't. De facto this means all members are accessible and changing the names of these members or their...
Slicers produce different 'types' of extrusion, or rather, these are generated by different subprocesses of the slicing process. For instance, perimeters are generated first after which the infill is generated....