dead code cleanup

This commit is contained in:
BroodjeAap 2022-10-02 15:23:12 +00:00
parent cbeadbd18e
commit 59d63bbb77
2 changed files with 0 additions and 58 deletions

View file

@ -22,22 +22,6 @@ var __values = (this && this.__values) || function(o) {
};
throw new TypeError(s ? "Object is not iterable." : "Symbol.iterator is not defined.");
};
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
var CanvasObject = /** @class */ (function () {
function CanvasObject(x, y, width, height) {
this.x = x;
@ -413,22 +397,6 @@ var DiagramNode = /** @class */ (function (_super) {
}
return true;
};
DiagramNode.prototype.getInputCircleXY = function () {
return [this.x, this.y + this.height / 2];
};
DiagramNode.prototype.getOutputCircleXY = function () {
return [this.x + this.width, this.y + this.height / 2];
};
DiagramNode.prototype.pointInInputCircle = function (x, y) {
var _a = __read(this.getInputCircleXY(), 2), circleX = _a[0], circleY = _a[1];
var radiusSqrd = Math.pow(this.height / 3, 2);
return Math.pow(x - circleX, 2) + Math.pow(y - circleY, 2) <= radiusSqrd;
};
DiagramNode.prototype.pointInOutputCircle = function (x, y) {
var _a = __read(this.getOutputCircleXY(), 2), circleX = _a[0], circleY = _a[1];
var radiusSqrd = Math.pow(this.height / 3, 2);
return Math.pow(x - circleX, 2) + Math.pow(y - circleY, 2) <= radiusSqrd;
};
return DiagramNode;
}(CanvasObject));
var _diagram;
@ -637,8 +605,6 @@ var Diagrams = /** @class */ (function () {
this.ctx.lineWidth = 5;
this.ctx.strokeRect(0, 0, this.canvas.width, this.canvas.height);
};
Diagrams.prototype.draw = function () {
};
Diagrams.prototype.addNode = function (id, x, y, label, meta, results, logs) {
if (meta === void 0) { meta = {}; }
if (results === void 0) { results = new Array(); }

View file

@ -475,26 +475,6 @@ class DiagramNode extends CanvasObject {
}
return true;
}
getInputCircleXY(){
return [this.x, this.y + this.height / 2]
}
getOutputCircleXY(){
return [this.x + this.width, this.y + this.height / 2]
}
pointInInputCircle(x: number, y: number){
let [circleX, circleY] = this.getInputCircleXY()
let radiusSqrd = Math.pow(this.height / 3, 2);
return Math.pow(x - circleX, 2) + Math.pow(y - circleY, 2) <= radiusSqrd;
}
pointInOutputCircle(x: number, y: number){
let [circleX, circleY] = this.getOutputCircleXY()
let radiusSqrd = Math.pow(this.height / 3, 2);
return Math.pow(x - circleX, 2) + Math.pow(y - circleY, 2) <= radiusSqrd;
}
}
let _diagram: Diagrams;
@ -671,10 +651,6 @@ class Diagrams {
this.ctx.strokeRect(0, 0, this.canvas.width, this.canvas.height);
}
draw(){
}
addNode(
id: number,
x: number,