d
This commit is contained in:
@@ -1,17 +1,4 @@
|
||||
var Position = /** @class */ (function () {
|
||||
function Position(x, y) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
}
|
||||
return Position;
|
||||
}());
|
||||
function memoryItemPositions(c) {
|
||||
var pos = [];
|
||||
for (var i = 0; i < c.itemsCount; i++) {
|
||||
var row = Math.floor(i / 4);
|
||||
var x = memoryGap() + (i - row * 4) * memoryGap();
|
||||
var y = memoryGap() + row * memoryGap();
|
||||
pos.push(new Position(x, y));
|
||||
}
|
||||
return pos;
|
||||
// @ts-nocheck
|
||||
function memoryGap() {
|
||||
return memorySide() + memorySpace();
|
||||
}
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
import "./memoryGap.js"
|
||||
|
||||
protocol Context {
|
||||
var itemsCount: Float { get }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user