From 2fa7fe8e4c2c58093f940c69dbfd2ee565676e5c Mon Sep 17 00:00:00 2001 From: stephengold Date: Fri, 17 May 2024 23:39:50 -0700 Subject: [PATCH] apps: javadoc --- .../github/stephengold/lbjexamples/apps/HelloCharacter.java | 4 ++-- .../stephengold/lbjexamples/apps/HelloDeactivation.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloDoor.java | 4 ++-- .../github/stephengold/lbjexamples/apps/HelloDoubleEnded.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloGhost.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloJoint.java | 4 ++-- .../github/stephengold/lbjexamples/apps/HelloKinematics.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloLimit.java | 4 ++-- .../github/stephengold/lbjexamples/apps/HelloNewHinge.java | 4 ++-- .../stephengold/lbjexamples/apps/HelloNonUniformGravity.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloSpring.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloWalk.java | 4 ++-- .../com/github/stephengold/lbjexamples/apps/HelloWind.java | 4 ++-- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloCharacter.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloCharacter.java index 72abdae3..9a00de7c 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloCharacter.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloCharacter.java @@ -135,7 +135,7 @@ public void populateSpace() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -149,7 +149,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDeactivation.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDeactivation.java index c1660d6f..96dc1c6c 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDeactivation.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDeactivation.java @@ -146,7 +146,7 @@ public void updatePhysics(float wallClockSeconds) { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -157,7 +157,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoor.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoor.java index bcfd93a8..37a395a9 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoor.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoor.java @@ -218,7 +218,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -231,7 +231,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoubleEnded.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoubleEnded.java index 77cdc643..d997775d 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoubleEnded.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloDoubleEnded.java @@ -203,7 +203,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -216,7 +216,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloGhost.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloGhost.java index ac9af76b..4832381b 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloGhost.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloGhost.java @@ -186,7 +186,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -225,7 +225,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloJoint.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloJoint.java index e265daee..7fe78610 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloJoint.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloJoint.java @@ -201,7 +201,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -214,7 +214,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloKinematics.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloKinematics.java index 9adf64e1..cf521c45 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloKinematics.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloKinematics.java @@ -141,7 +141,7 @@ public void updatePhysics(float wallClockSeconds) { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -162,7 +162,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloLimit.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloLimit.java index 4c4fa432..ca87dc35 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloLimit.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloLimit.java @@ -214,7 +214,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -227,7 +227,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNewHinge.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNewHinge.java index 92a95d40..a4ecc508 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNewHinge.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNewHinge.java @@ -187,7 +187,7 @@ public void populateSpace() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -203,7 +203,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNonUniformGravity.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNonUniformGravity.java index b6574ccb..4a2698a5 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNonUniformGravity.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloNonUniformGravity.java @@ -149,7 +149,7 @@ public void updatePhysics(float wallClockSeconds) { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -165,7 +165,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloSpring.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloSpring.java index 697054b1..a5a2fd6f 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloSpring.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloSpring.java @@ -214,7 +214,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -227,7 +227,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWalk.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWalk.java index 8308c0fb..00988fa9 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWalk.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWalk.java @@ -162,7 +162,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -190,7 +190,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) { diff --git a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWind.java b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWind.java index 4ee6b58d..ebcf729a 100644 --- a/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWind.java +++ b/apps/src/main/java/com/github/stephengold/lbjexamples/apps/HelloWind.java @@ -231,7 +231,7 @@ public void updateWindowTitle() { * Callback from Bullet, invoked just before each simulation step. * * @param space the space that's about to be stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void prePhysicsTick(PhysicsSpace space, float timeStep) { @@ -252,7 +252,7 @@ public void prePhysicsTick(PhysicsSpace space, float timeStep) { * Callback from Bullet, invoked just after each simulation step. * * @param space the space that was just stepped (not null) - * @param timeStep the time per simulation step (in seconds, ≥0) + * @param timeStep the duration of the simulation step (in seconds, ≥0) */ @Override public void physicsTick(PhysicsSpace space, float timeStep) {