From d2b14e2a5d60567d7f7bb73401bf51b14a3d833e Mon Sep 17 00:00:00 2001 From: SiboVG Date: Thu, 18 Aug 2022 00:15:47 +0200 Subject: [PATCH] [#1227] Include root points in fin 3D view & export --- core/src/net/sf/openrocket/rocketcomponent/FinSet.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java index 79dc0c4a3..f96681335 100644 --- a/core/src/net/sf/openrocket/rocketcomponent/FinSet.java +++ b/core/src/net/sf/openrocket/rocketcomponent/FinSet.java @@ -1009,7 +1009,8 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona * but the minor performance hit is not worth the code complexity of dealing with. */ public Coordinate[] getFinPointsWithTab() { - return combineCurves(getFinPoints(), getTabPoints()); + Coordinate[] temp = combineCurves(getFinPoints(), getRootPoints()); + return combineCurves(temp, getTabPoints()); } @Override