Various fixes, smaller refactoring

This commit is contained in:
barsdeveloper
2023-02-04 00:15:58 +01:00
parent 8de12775a7
commit c501e2be3a
19 changed files with 175 additions and 181 deletions

View File

@@ -90,7 +90,11 @@ export default class LinkTemplate extends IFromToPositionedTemplate {
this.blueprint,
undefined,
/** @param {[Number, Number]} location */
location => this.#createKnot(location)
location => {
location[0] += Configuration.knotOffset[0]
location[1] += Configuration.knotOffset[1]
this.#createKnot(location)
}
)
]
}