Clarify that only nose cone and fins of 3D printed example rocket are to be printed

This commit is contained in:
JoePfeiffer 2023-10-16 16:07:11 -06:00
parent 8f937daf33
commit 3ecb87c861
3 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ public class BasicEventSimulationEngine implements SimulationEngine {
final boolean wantToTumble = (cg > cp && aoa > AOA_TUMBLE_CONDITION);
final boolean isSustainer = currentStatus.getConfiguration().isStageActive(0);
final boolean isApogee = currentStatus.isApogeeReached();
if (wantToTumble && (isApogee || !isSustainer)) {
if (wantToTumble) {
addEvent(new FlightEvent(FlightEvent.Type.TUMBLE, currentStatus.getSimulationTime()));
}
}

View File

@ -33,7 +33,7 @@ public final class ExampleDesignFileAction extends JMenu {
"Three-stage rocket",
"TARC payload rocket",
"Tube fin rocket",
"A 3D printable model rocket",
"3D Printable Nose Cone and Fins",
null,
// Examples demonstrating complex rocket features
"Airstart timing",