kopia lustrzana https://github.com/OpenBuilds/OpenBuilds-CONTROL
rodzic
b9926027e4
commit
c548ff756d
|
@ -1,3 +1,4 @@
|
||||||
|
v1.0.199: Improvd handling of Helican G2/G3 preview
|
||||||
v1.0.198: Fixed bug in Mobile Jog
|
v1.0.198: Fixed bug in Mobile Jog
|
||||||
v1.0.197: Renewed SSL Certificates
|
v1.0.197: Renewed SSL Certificates
|
||||||
v1.0.196: Added menu to troubleshooting tab to selectively disable frontend features for debugging
|
v1.0.196: Added menu to troubleshooting tab to selectively disable frontend features for debugging
|
||||||
|
|
|
@ -7,6 +7,7 @@ var loader = new THREE.ObjectLoader();
|
||||||
|
|
||||||
|
|
||||||
function convertParsedDataToObject(parsedData) {
|
function convertParsedDataToObject(parsedData) {
|
||||||
|
parsedData = JSON.parse(parsedData)
|
||||||
var geometry = new THREE.BufferGeometry();
|
var geometry = new THREE.BufferGeometry();
|
||||||
var material = new THREE.LineBasicMaterial({
|
var material = new THREE.LineBasicMaterial({
|
||||||
vertexColors: THREE.VertexColors
|
vertexColors: THREE.VertexColors
|
||||||
|
|
|
@ -4,7 +4,8 @@ self.addEventListener('message', function(e) {
|
||||||
var data = e.data;
|
var data = e.data;
|
||||||
var result = createObjectFromGCode(e.data.data)
|
var result = createObjectFromGCode(e.data.data)
|
||||||
result = result;
|
result = result;
|
||||||
self.postMessage(result);
|
// console.log(result)
|
||||||
|
self.postMessage(JSON.stringify(result));
|
||||||
}, false);
|
}, false);
|
||||||
|
|
||||||
// This is a simplified and updated version of http://gcode.joewalnes.com/
|
// This is a simplified and updated version of http://gcode.joewalnes.com/
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "OpenBuildsCONTROL",
|
"name": "OpenBuildsCONTROL",
|
||||||
"version": "1.0.198",
|
"version": "1.0.199",
|
||||||
"license": "AGPL-3.0",
|
"license": "AGPL-3.0",
|
||||||
"description": "Machine Interface Driver for OpenBuilds",
|
"description": "Machine Interface Driver for OpenBuilds",
|
||||||
"author": "github.com/openbuilds <webmaster@openbuilds.com>",
|
"author": "github.com/openbuilds <webmaster@openbuilds.com>",
|
||||||
|
|
Ładowanie…
Reference in New Issue