Skip to content

Commit

Permalink
#5055 - Fixing multitail arrow design
Browse files Browse the repository at this point in the history
  • Loading branch information
daniil-sloboda committed Aug 28, 2024
1 parent 1f9f805 commit a4e8638
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions packages/ketcher-core/src/application/render/pathBuilder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ export class PathBuilder {
return this;
}

addLine(to: Point2D): PathBuilder;
addLine(to: Point2D, from: Point2D): PathBuilder;

addLine(to: Point2D, from?: Point2D): PathBuilder {
if (from) {
this.addMovement(from);
Expand All @@ -50,11 +47,6 @@ export class PathBuilder {
return this;
}

addPathParts(pathParts: Array<string>): PathBuilder {
this.pathParts = this.pathParts.concat(pathParts);
return this;
}

addOpenArrowPathParts(
start: Vec2,
arrowLength: number,
Expand Down

0 comments on commit a4e8638

Please sign in to comment.