Limit low res root geometry to 15 points

Because otherwise you would still get 3D issues on large rockets
This commit is contained in:
SiboVG 2022-09-07 21:43:04 +02:00
parent db16ebc994
commit 58c2809ee4

View File

@ -33,7 +33,7 @@ public abstract class FinSet extends ExternalComponent implements AxialPositiona
* Maximum number of root points in the root geometry. * Maximum number of root points in the root geometry.
*/ */
private static final int MAX_ROOT_DIVISIONS = 100; private static final int MAX_ROOT_DIVISIONS = 100;
private static final int MAX_ROOT_DIVISIONS_LOW_RES = 20; private static final int MAX_ROOT_DIVISIONS_LOW_RES = 15;
public void setOverrideMass() { public void setOverrideMass() {
} }