Skip to content

Commit

Permalink
AppChooser: add option for the HelloCustomShape app
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jan 27, 2024
1 parent ccbd4f7 commit 4560fba
Showing 1 changed file with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
import com.github.stephengold.lbjexamples.apps.HelloCharacter;
import com.github.stephengold.lbjexamples.apps.HelloCloth;
import com.github.stephengold.lbjexamples.apps.HelloContactResponse;
import com.github.stephengold.lbjexamples.apps.HelloCustomShape;
import com.github.stephengold.lbjexamples.apps.HelloDamping;
import com.github.stephengold.lbjexamples.apps.HelloDeactivation;
import com.github.stephengold.lbjexamples.apps.HelloDoor;
Expand Down Expand Up @@ -95,7 +96,7 @@ final class AppChooser extends JFrame {
*/
public static void main(String[] arguments) {
Logger.getLogger("").setLevel(Level.WARNING);
List<BaseApplication> apps = new ArrayList<>(48);
List<BaseApplication> apps = new ArrayList<>(49);

apps.add(new AssimpTest());
apps.add(new CheckerboardTest());
Expand All @@ -107,50 +108,51 @@ public static void main(String[] arguments) {
apps.add(new HelloCharacter());
apps.add(new HelloCloth());
apps.add(new HelloContactResponse());
apps.add(new HelloDamping());
apps.add(new HelloCustomShape());

apps.add(new HelloDamping());
apps.add(new HelloDeactivation());
apps.add(new HelloDoor());
apps.add(new HelloDoubleEnded());
apps.add(new HelloGhost());
apps.add(new HelloJoint());

apps.add(new HelloJoint());
apps.add(new HelloKinematics());
apps.add(new HelloLimit());
apps.add(new HelloMadMallet());
apps.add(new HelloMassDistribution());
apps.add(new HelloMinkowski());

apps.add(new HelloMinkowski());
apps.add(new HelloMotor());
apps.add(new HelloNewHinge());
apps.add(new HelloNonUniformGravity());
apps.add(new HelloPin());
apps.add(new HelloRigidBody());

apps.add(new HelloRigidBody());
apps.add(new HelloServo());
apps.add(new HelloSoftBody());
apps.add(new HelloSoftRope());
apps.add(new HelloSoftSoft());
apps.add(new HelloSport());

apps.add(new HelloSport());
apps.add(new HelloSpring());
apps.add(new HelloStaticBody());
apps.add(new HelloVehicle());
apps.add(new HelloWalk());
apps.add(new HelloWind());

apps.add(new HelloWind());
apps.add(new IcosphereTest());
apps.add(new MouseTest());
apps.add(new MouseTest2());
apps.add(new NewtonsCradle());
apps.add(new OctasphereTest());

apps.add(new OctasphereTest());
apps.add(new Pachinko());
apps.add(new RainbowTest());
apps.add(new SplitDemo());
apps.add(new SpriteTest());
apps.add(new TestGearJoint());

apps.add(new TestGearJoint());
apps.add(new TextureTest());
apps.add(new ThousandCubes());
apps.add(new Windlass());
Expand Down

0 comments on commit 4560fba

Please sign in to comment.