Merge pull request #1094 from SiboVG/issue-1092

[fixes #1092] Draw root edge of fin tab
This commit is contained in:
Joe Pfeiffer 2022-01-31 10:39:33 -07:00 committed by GitHub
commit 7df86f9407
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -909,7 +909,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
return new Coordinate[]{};
}
final int pointCount = 4;
final int pointCount = 5;
Coordinate[] points = new Coordinate[pointCount];
final Coordinate finFront = this.getFinFront();
@ -932,6 +932,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
points[1] = new Coordinate(xTabFront, yTabBottom );
points[2] = new Coordinate(xTabTrail, yTabBottom );
points[3] = new Coordinate(xTabTrail, yTabTrail);
points[4] = new Coordinate(xTabFront, yTabFront);
return points;
}