Members
balls
A global variable that stores all of the balls being rendered.
controlPanel
Handler for the control panel DOM element.
deleteBallButton
Handler for the delete ball button DOM element.
dt
A global variable that stores the time step for the physics stimulation.
gravityX
The x component of the gravity force.
gravityXDisplay
The handler for the x component of the gravity force display DOM element.
gravityXSlider
The handler for the x component of the gravity force slider.
gravityY
The y component of the gravity force.
gravityYDisplay
The handler for the y component of the gravity force display DOM element.
gravityYSlider
The handler for the y component of the gravity force slider.
hideGravityVectorButton
Handler for the hide gravity vector button.
maxNumBalls
The maximum number of balls to be rendered on the canvas.
maxNumBallsDisplay
Handler for the maxNumBalls DOM element which acts as a display.
maxNumBallsSlider
Handler for the maxNumBalls Slider.
newBallButton
Handler for the new ball button DOM element.
numBallsDisplay
The handler for the number of balls display DOM element.
pseudoBallWallCOR
The current value of the pseudo ball-wall coefficient of restitution (COR).
pseudoBallWallCORDisplay
Handler for the pseudo ball-wall coefficient of restitution (COR) display
DOM element.
pseudoBallWallCORSlider
Handler for the pseudo ball-wall coefficient of restitution (COR) slider.
resetButton
Handler for the reset button DOM element.
showGravityVector
The Show gravity vector flag.
showGravityVectorButton
Handler for the show gravity vector button.
updatesPerFrame
A global variable that stores the number of physics updates per frame.
Methods
controlPanelHide()
Hides the control panel by making the DOM element hidden.
controlPanelSetup()
The setup function for the control panel.
controlPanelShow()
Shows the control panel by making the DOM element visible.
deleteBall()
The delete ball call back. This function deletes a ball from the balls
array. The function does not remove any balls if there is only one left.
Once this is complete the showNumBalls() functions is called.
deleteBallButtonSetup()
The setup function for the delete ball button.
draw()
p5.js draw function, used to draw all balls and apply physics for each
frame
drawGravity()
Draw the gravity vector that is currently being applied to all the balls.
gravitySliderSetup()
The setup function for the x and y gravity sliders
gravityVectorButtonsSetup()
Setup the show and hide gravity buttons
hideGravity()
The call back for the hid gravity button
maxNumBallsSliderSetup()
The max number of balls slider setup function.
mousePressed()
When the mouse is pressed a new ball is added to the balls array.
newBall()
The new ball button call back. This function does not add a new ball to the
balls array if the array is larger than the maxNumBalls variable.
Once this is completed the showNumBalls() function is called.
newBallButtonSetup()
The setup function for the new ball button
numBallsDisplaySetup()
The function to setup the DOM element showing the current number of balls
being rendered on the canvas. Once the DOM element has been set up the
showNumBalls() function is called.
pseudoBallWallCORSliderSetup()
The pseudo ball-wall coefficient of restitution (COR) slider setup function.
randBall() → {Ball}
Generates a ball with a random velocity and a random radius positions at
the current location of the mouse.
Returns:
Ball Object with random velocity at the pointer location.
- Type
- Ball
reset()
The call back for the reset button. This empties the balls list and adds a
random ball. The time step (dt) is also reset.
resetButtonSetup()
The setup function for the reset button.
setup()
p5.js setup function, used to create a canvas and instantiate the first
Ball object in the balls array
showGravity()
The call back for the show gravity button
showNumBalls()
Updates the DOM element showing the current number of balls being rendered on
the canvas.
uiPoll()
A function that polls all of the ui elements that require polling every
frame.
uiSetup()
A function to setup all of the UI elements in the control panel.