fix indenting

This commit is contained in:
casperlamboo 2016-10-13 14:24:12 +02:00
parent 83febd6aa0
commit fdff42b4a5

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