Skip to content

Commit

Permalink
apps: javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed May 18, 2024
1 parent 9f1e348 commit 2fa7fe8
Show file tree
Hide file tree
Showing 13 changed files with 26 additions and 26 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit 2fa7fe8

Please sign in to comment.