fix indenting

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

View File

@ -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));
}
}
}