[#1227] Include root points in fin 3D view & export

This commit is contained in:
SiboVG 2022-08-18 00:15:47 +02:00
parent 84100ba74c
commit d2b14e2a5d

View File

@ -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