From 9fb04af6d92d3f51856f7a0611377420db784cab Mon Sep 17 00:00:00 2001 From: andrewgryan Date: Sat, 25 May 2024 12:08:20 +0100 Subject: [PATCH] Update van.md --- docs/content/articles/van.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/articles/van.md b/docs/content/articles/van.md index 2b98068..2f20fae 100644 --- a/docs/content/articles/van.md +++ b/docs/content/articles/van.md @@ -53,7 +53,7 @@ const ball = { } ``` -A single tick, moves the ball. +A single tick, moves the ball in its direction of travel proportional to the elapsed time since the last update. ```js ball.x += ball.velocity * Math.cos(ball.angleRadians) * dT