source / destionation => origin / target

This commit is contained in:
barsdeveloper
2025-01-24 19:51:28 +02:00
parent 15a1769b95
commit dfa402707c
8 changed files with 241 additions and 241 deletions

View File

@@ -47,7 +47,7 @@ export default class IFromToPositionedElement extends IElement {
* @param {Number} x
* @param {Number} y
*/
addSourceLocation(x, y) {
addOriginLocation(x, y) {
this.fromX += x
this.fromY += y
}
@@ -56,7 +56,7 @@ export default class IFromToPositionedElement extends IElement {
* @param {Number} x
* @param {Number} y
*/
addDestinationLocation(x, y) {
addTargetLocation(x, y) {
this.toX += x
this.toY += y
}