|
@@ -436,6 +436,14 @@ export class DataService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+ getCrossPoint4(edgeId) {
|
|
|
+ for (let key in this.vectorData.crossPoints) {
|
|
|
+ if (key.indexOf(edgeId + "-") > -1 || key.indexOf("-" + edgeId) > -1) {
|
|
|
+ return this.vectorData.crossPoints[key];
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
getCrossPointForEdgeId(edgeId, dir) {
|
|
|
for (let key in this.vectorData.crossPoints) {
|
|
|
const crossPoint = this.vectorData.crossPoints[key];
|