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