Lines Matching refs:ScaleConstraint
455 function ScaleConstraint(src, scale, offset, dest, strength) { class
459 ScaleConstraint.superConstructor.call(this, src, dest, strength);
462 ScaleConstraint.inheritsFrom(BinaryConstraint);
467 ScaleConstraint.prototype.addToGraph = function () {
468 ScaleConstraint.superConstructor.prototype.addToGraph.call(this);
473 ScaleConstraint.prototype.removeFromGraph = function () {
474 ScaleConstraint.superConstructor.prototype.removeFromGraph.call(this);
479 ScaleConstraint.prototype.markInputs = function (mark) {
480 ScaleConstraint.superConstructor.prototype.markInputs.call(this, mark);
487 ScaleConstraint.prototype.execute = function () {
500 ScaleConstraint.prototype.recalculate = function () {
843 new ScaleConstraint(src, scale, offset, dst, Strength.REQUIRED);