Removed debug output

This commit is contained in:
Fabian Wunsch 2022-04-12 17:32:30 +02:00
parent aa227a612e
commit 3476089dcb

View file

@ -229,7 +229,7 @@ window.initDraw = function(){
function calculateCenter(path){
let result = polylabel(path, 0.5, true)
let result = polylabel(path)
return [Math.floor(result[0]) + 0.5, Math.floor(result[1]) + 0.5]
}