0
0
mirror of https://github.com/Doodle3D/Doodle3D-Slicer.git synced 2025-06-08 16:39:54 +02:00

fix indenting

This commit is contained in:
casperlamboo 2016-10-13 14:24:12 +02:00 committed by Simon Voordouw
parent de2f2ceafd
commit 785898f466

@ -11,12 +11,12 @@ export default function applyPrecision(shapes) {
function scaleUpShape(shape) {
for (let i = 0; i < shape.length; i ++) {
const path = shape[i];
const path = shape[i];
for (let i = 0; i < path.length; i ++) {
const point = path[i];
for (let i = 0; i < path.length; i ++) {
const point = path[i];
point.copy(point.divideScalar(PRECISION));
}
point.copy(point.divideScalar(PRECISION));
}
}
}