blob: c261652b632df5fcd7468b88bb3cc8bbeb0c6954 [file] [log] [blame]
function addConstraint(blaat) {
return blaat.v1
}
function ScaleConstraint() {
this.direction = null
this.v1 = {};
addConstraint(this);
}
function EqualityConstraint() {
this.v1 = {};
addConstraint(this);
}
function deltaBlue() {
new EqualityConstraint();
new ScaleConstraint();
}
for (var n = 0; n<100; n++) {
deltaBlue()
}