This commit is contained in:
Michael Wain 2024-03-15 21:25:37 +03:00
parent 965c0ccd1d
commit 07266f2031

View File

@ -192,14 +192,6 @@ function moveChipTo(chip) {
$(chip.dom).animate({marginTop: offsetY + mm.marginTop, marginLeft: offsetX + mm.marginLeft}, 1000);
}
/*
function moveChip(chip) {
$(chip.dom).css("background-color", chip.color);
let offsetY = (Math.max(chip.y-1, 0) * 55) + (chip.y * 2) + (clamp(chip.y, 0, 1) * 100) + 18;
let offsetX = (Math.max(chip.x-1, 0) * 55) + (chip.x * 2) + (clamp(chip.x, 0, 1) * 100);
$(chip.dom).animate({marginTop: offsetY, marginLeft: offsetX}, 1000);
}*/
function moveChips() {
for(let i = 0; i < board.chips.length; i++ ) {
let chip = board.chips[i];
@ -253,14 +245,6 @@ function refreshChip(position) {
return chips_coords;
}
/*
function refreshChips() {
let positions = distinct(board.chips.filter((c) => c.uid != 0).map(({ x, y }) => ({ x, y })));
for( let i = 0; i < positions.length; i++ ) {
refreshChip(positions[i]);
}
}*/
function assignChip(body) {
let nc = board.chips.find((c) => c.uid == 0);
if( nc == undefined ) return;