Home | History | Annotate | Download | only in turbolizer

Lines Matching refs:this

2 // Use of this source code is governed by a BSD-style license that can be
12 this.target = target;
13 this.source = source;
14 this.index = index;
15 this.type = type;
16 this.backEdgeNumber = 0;
17 this.visible = isEdgeInitiallyVisible(target, index, source, type);
21 return this.source.id + "," + this.index + "," + this.target.id;
25 return this.visible && this.source.visible && this.target.visible;
29 if (this.backEdgeNumber > 0) {
30 return graph.maxGraphNodeX + this.backEdgeNumber * MINIMUM_EDGE_SEPARATION;
32 var source = this.source;
33 var target = this.target;
34 var index = this.index;
36 var inputApproach = target.getInputApproach(this.index);
49 var target = this.target;
50 var source = this.source;
51 var input_x = target.x + target.getInputX(this.index);
56 var inputApproach = target.getInputApproach(this.index);
58 var horizontalPos = this.getInputHorizontalPosition(graph);
78 return this.target.hasBackEdges() && (this.target.rank < this.source.rank);