summaryrefslogtreecommitdiff
path: root/frontend/_shared/math/circle.js
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/_shared/math/circle.js')
-rw-r--r--frontend/_shared/math/circle.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/_shared/math/circle.js b/frontend/_shared/math/circle.js
index 340d7dc..ba33021 100644
--- a/frontend/_shared/math/circle.js
+++ b/frontend/_shared/math/circle.js
@@ -71,7 +71,7 @@ function renderCircle(pGl, pProgramInfo, pCircle) {
pGl.drawArrays(pGl.TRIANGLE_STRIP, 0, pCircle.vertexCount);
}
-function getMomentOfInertia(pCircle) {
+function getCircleMomentOfInertia(pCircle) {
return (Math.PI * Math.pow(pCircle.radius, 4)) / 4;
}