mirror of
https://github.com/Doodle3D/Doodle3D-Slicer.git
synced 2024-12-23 11:33:49 +01:00
fixed spelling errors
This commit is contained in:
parent
99b2b24d88
commit
67093d047d
@ -31,7 +31,7 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
var slice = $("<li class='hidden'><a href='slice_test.html#" + localip + "'>" + name + "</a></li>");
|
var slice = $("<li class='hidden'><a href='slice_test.html#" + localip + "'>" + name + "</a></li>");
|
||||||
var webworker = $("<li class='hidden'><a href='webworker_test.html#" + localip + "'>" + name + "</a></li>");
|
var webworker = $("<li class='hidden'><a href='webworker_test.html#" + localip + "'>" + name + "</a></li>");
|
||||||
var editor = $("<li class='hidden'><a href='three.js-master/editor_viewer#" + localip + "'>" + name + "</a></li>");
|
var editor = $("<li class='hidden'><a href='three.js-master/editor_slicer#" + localip + "'>" + name + "</a></li>");
|
||||||
|
|
||||||
listSliceTest.append(slice);
|
listSliceTest.append(slice);
|
||||||
listSliceWebworker.append(webworker);
|
listSliceWebworker.append(webworker);
|
||||||
|
@ -4,16 +4,16 @@
|
|||||||
"topThickness": 0.8,
|
"topThickness": 0.8,
|
||||||
"shellThickness": 0.4,
|
"shellThickness": 0.4,
|
||||||
"brimOffset": 5.0,
|
"brimOffset": 5.0,
|
||||||
"fillGritSize": 5.0,
|
"fillGridSize": 5.0,
|
||||||
"travelSpeed": 200.0,
|
"travelSpeed": 200.0,
|
||||||
"retractionAmount": 3.0,
|
"retractionAmount": 3.0,
|
||||||
"retractionEnabled": true,
|
"retractionEnabled": true,
|
||||||
"retractionSpeed": 50.0,
|
"retractionSpeed": 50.0,
|
||||||
"retractionMinDistance": 0.0,
|
"retractionMinDistance": 0.0,
|
||||||
"supportAccaptanceMargin": 1.5,
|
"supportAcceptanceMargin": 1.5,
|
||||||
"supportDistanceY": 0.4,
|
"supportDistanceY": 0.2,
|
||||||
"supportUse": true,
|
"supportUse": true,
|
||||||
"supportGritSize": 6.0,
|
"supportGridSize": 6.0,
|
||||||
"supportMargin": 2.0,
|
"supportMargin": 2.0,
|
||||||
"supportPlateSize": 4.0,
|
"supportPlateSize": 4.0,
|
||||||
"outerLine": {
|
"outerLine": {
|
||||||
|
@ -134,6 +134,8 @@ D3D.Slicer.prototype.slice = function (layerHeight, height) {
|
|||||||
for (var layer = 0; layer < layersIntersections.length; layer ++) {
|
for (var layer = 0; layer < layersIntersections.length; layer ++) {
|
||||||
var layerIntersections = layersIntersections[layer];
|
var layerIntersections = layersIntersections[layer];
|
||||||
|
|
||||||
|
if (layerIntersections.length > 0) {
|
||||||
|
|
||||||
var y = layer * layerHeight;
|
var y = layer * layerHeight;
|
||||||
|
|
||||||
var intersections = [];
|
var intersections = [];
|
||||||
@ -203,7 +205,7 @@ D3D.Slicer.prototype.slice = function (layerHeight, height) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
//think this check is not nescesary, always higher as 0
|
//think this check is not nescesary, always higher as 0
|
||||||
if (shape.length > 0) {
|
if (shape.length > 1) {
|
||||||
var part = new D3D.Paths([shape]).clean(0.01);
|
var part = new D3D.Paths([shape]).clean(0.01);
|
||||||
sliceParts.push(part);
|
sliceParts.push(part);
|
||||||
}
|
}
|
||||||
@ -235,6 +237,7 @@ D3D.Slicer.prototype.slice = function (layerHeight, height) {
|
|||||||
this.progress.sliceLayer = layer;
|
this.progress.sliceLayer = layer;
|
||||||
this.updateProgress();
|
this.updateProgress();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
return slices;
|
return slices;
|
||||||
};
|
};
|
||||||
D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
||||||
@ -245,13 +248,13 @@ D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
|||||||
var layerHeight = printer.config["layerHeight"];
|
var layerHeight = printer.config["layerHeight"];
|
||||||
var nozzleDiameter = printer.config["nozzleDiameter"] * scale;
|
var nozzleDiameter = printer.config["nozzleDiameter"] * scale;
|
||||||
var shellThickness = printer.config["shellThickness"] * scale;
|
var shellThickness = printer.config["shellThickness"] * scale;
|
||||||
var fillGritSize = printer.config["fillGritSize"] * scale;
|
var fillGridSize = printer.config["fillGridSize"] * scale;
|
||||||
var brimOffset = printer.config["brimOffset"] * scale;
|
var brimOffset = printer.config["brimOffset"] * scale;
|
||||||
var bottomThickness = printer.config["bottomThickness"];
|
var bottomThickness = printer.config["bottomThickness"];
|
||||||
var topThickness = printer.config["topThickness"];
|
var topThickness = printer.config["topThickness"];
|
||||||
var useSupport = printer.config["supportUse"];
|
var useSupport = printer.config["supportUse"];
|
||||||
var supportGritSize = printer.config["supportGritSize"] * scale;
|
var supportGridSize = printer.config["supportGridSize"] * scale;
|
||||||
var supportAccaptanceMargin = printer.config["supportAccaptanceMargin"] * scale;
|
var supportAcceptanceMargin = printer.config["supportAcceptanceMargin"] * scale;
|
||||||
var supportMargin = printer.config["supportMargin"] * scale;
|
var supportMargin = printer.config["supportMargin"] * scale;
|
||||||
var plateSize = printer.config["supportPlateSize"] * scale;
|
var plateSize = printer.config["supportPlateSize"] * scale;
|
||||||
var supportDistanceY = printer.config["supportDistanceY"];
|
var supportDistanceY = printer.config["supportDistanceY"];
|
||||||
@ -266,12 +269,16 @@ D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
|||||||
top: this.geometry.boundingBox.min.x * scale,
|
top: this.geometry.boundingBox.min.x * scale,
|
||||||
right: this.geometry.boundingBox.max.z * scale,
|
right: this.geometry.boundingBox.max.z * scale,
|
||||||
bottom: this.geometry.boundingBox.max.x * scale
|
bottom: this.geometry.boundingBox.max.x * scale
|
||||||
}, fillGritSize, true, true);
|
}, fillGridSize, true, true);
|
||||||
|
|
||||||
console.log("generating outer lines and inner lines");
|
console.log("generating outer lines and inner lines");
|
||||||
for (var layer = 0; layer < slices.length; layer ++) {
|
for (var layer = 0; layer < slices.length; layer ++) {
|
||||||
var slice = slices[layer];
|
var slice = slices[layer];
|
||||||
|
|
||||||
|
if (layer === 0) {
|
||||||
|
console.log(slice.parts[0]);
|
||||||
|
}
|
||||||
|
|
||||||
for (var i = 0; i < slice.parts.length; i ++) {
|
for (var i = 0; i < slice.parts.length; i ++) {
|
||||||
var part = slice.parts[i];
|
var part = slice.parts[i];
|
||||||
|
|
||||||
@ -340,7 +347,7 @@ D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
|||||||
top: this.geometry.boundingBox.min.x * scale,
|
top: this.geometry.boundingBox.min.x * scale,
|
||||||
right: this.geometry.boundingBox.max.z * scale,
|
right: this.geometry.boundingBox.max.z * scale,
|
||||||
bottom: this.geometry.boundingBox.max.x * scale
|
bottom: this.geometry.boundingBox.max.x * scale
|
||||||
}, supportGritSize, true, true);
|
}, supportGridSize, true, true);
|
||||||
|
|
||||||
var supportAreas = new D3D.Paths([], true);
|
var supportAreas = new D3D.Paths([], true);
|
||||||
|
|
||||||
@ -375,7 +382,7 @@ D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
|||||||
var slicePart = slice.parts[i];
|
var slicePart = slice.parts[i];
|
||||||
var outerLine = slicePart.outerLine;
|
var outerLine = slicePart.outerLine;
|
||||||
|
|
||||||
var overlap = supportSkin.offset(supportAccaptanceMargin).intersect(outerLine);
|
var overlap = supportSkin.offset(supportAcceptanceMargin).intersect(outerLine);
|
||||||
var overhang = outerLine.difference(overlap);
|
var overhang = outerLine.difference(overlap);
|
||||||
|
|
||||||
if (overlap.length === 0 || overhang.length > 0) {
|
if (overlap.length === 0 || overhang.length > 0) {
|
||||||
@ -384,7 +391,7 @@ D3D.Slicer.prototype.slicesToData = function (slices, printer) {
|
|||||||
|
|
||||||
//supportAreas = supportAreas.union(overhang);
|
//supportAreas = supportAreas.union(overhang);
|
||||||
|
|
||||||
supportAreas = supportAreas.union(overhang.offset(supportAccaptanceMargin).intersect(outerLine));
|
supportAreas = supportAreas.union(overhang.offset(supportAcceptanceMargin).intersect(outerLine));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
D3D.SlicerWorker = function () {
|
D3D.SlicerWorker = function () {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
this.worker = new Worker('../../webworker/worker.js');
|
this.worker = new Worker(window.location.origin + '/webworker/worker.js');
|
||||||
|
|
||||||
var scope = this;
|
var scope = this;
|
||||||
this.worker.addEventListener('message', function (event) {
|
this.worker.addEventListener('message', function (event) {
|
||||||
|
@ -65,6 +65,19 @@ Sidebar.Geometry.Modifiers = function ( signals, object ) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var button = new UI.Button( 'Snap to grid' );
|
||||||
|
button.onClick( function () {
|
||||||
|
|
||||||
|
geometry.computeBoundingBox();
|
||||||
|
|
||||||
|
object.position.y = -geometry.boundingBox.min.y;
|
||||||
|
|
||||||
|
object.updateMatrix();
|
||||||
|
|
||||||
|
} );
|
||||||
|
|
||||||
|
container.add( button );
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
||||||
return container;
|
return container;
|
@ -125,7 +125,6 @@ Sidebar.Slicer = function ( editor ) {
|
|||||||
var slicer = new D3D.SlicerWorker();
|
var slicer = new D3D.SlicerWorker();
|
||||||
|
|
||||||
slicer.onprogress = function (_progress) {
|
slicer.onprogress = function (_progress) {
|
||||||
console.log(_progress);
|
|
||||||
progress.setValue(Math.round(_progress.procent * 100) + "%");
|
progress.setValue(Math.round(_progress.procent * 100) + "%");
|
||||||
};
|
};
|
||||||
slicer.onfinish = function (gcode) {
|
slicer.onfinish = function (gcode) {
|
@ -99,8 +99,8 @@ function init () {
|
|||||||
var mesh = new THREE.Mesh(geometry, material);
|
var mesh = new THREE.Mesh(geometry, material);
|
||||||
|
|
||||||
mesh.rotation.x = -Math.PI/2;
|
mesh.rotation.x = -Math.PI/2;
|
||||||
mesh.scale.x = mesh.scale.y = mesh.scale.z = 0.5;
|
mesh.scale.x = mesh.scale.y = mesh.scale.z = 1;
|
||||||
mesh.position.y = -0.1;
|
//mesh.position.y = -0.1;
|
||||||
mesh.position.x = 60;
|
mesh.position.x = 60;
|
||||||
mesh.position.z = 60;
|
mesh.position.z = 60;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user