1 | if ((lastTick != null) && (lastX == x) ↵ | | 1 | if ((lastTick != null) && (lastY == y) ↵
|
2 | && (currentTickValue != cycleBound)) {↵ | | 2 | && (currentTickValue != cycleBound)) {↵
|
3 | anchor = isInverted() ↵ | | 3 | anchor = isInverted() ↵
|
4 | ? TextAnchor.BOTTOM_LEFT : TextAnchor.BOTTOM_RIGHT;↵ | | 4 | ? TextAnchor.BOTTOM_LEFT : TextAnchor.BOTTOM_RIGHT;↵
|
5 | result.remove(result.size() - 1);↵ | | 5 | result.remove(result.size() - 1);↵
|
6 | result.add(new CycleBoundTick(↵ | | 6 | result.add(new CycleBoundTick(↵
|
7 | this.boundMappedToLastCycle, lastTick.getNumber(),↵ | | 7 | this.boundMappedToLastCycle, lastTick.getNumber(),↵
|
8 | lastTick.getText(), anchor, anchor, ↵ | | 8 | lastTick.getText(), anchor, anchor, ↵
|
9 | lastTick.getAngle())↵ | | 9 | lastTick.getAngle())↵
|
10 | );↵ | | 10 | );↵
|
11 | this.internalMarkerWhenTicksOverlap = true;↵ | | 11 | this.internalMarkerWhenTicksOverlap = true;↵
|
12 | anchor = isInverted() ↵ | | 12 | anchor = isInverted() ↵
|
13 | ? TextAnchor.BOTTOM_RIGHT : TextAnchor.BOTTOM_LEFT;↵ | | 13 | ? TextAnchor.BOTTOM_RIGHT : TextAnchor.BOTTOM_LEFT;↵
|
14 | } | | 14 | }
|