From ef91b1057d6ffd588769655b2286d5134ff4062e Mon Sep 17 00:00:00 2001 From: paulmasson Date: Mon, 29 Aug 2022 18:22:13 -0700 Subject: [PATCH] Update example --- docs/examples/kepler-orbits.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/examples/kepler-orbits.html b/docs/examples/kepler-orbits.html index 9f34805..965bd1c 100644 --- a/docs/examples/kepler-orbits.html +++ b/docs/examples/kepler-orbits.html @@ -46,10 +46,12 @@ yMin: -a*sqrt(1-e**2), yMax: a*sqrt(1-e**2), zMax: 2, axes: true, frame: false, viewpoint: [1,-1,1], clearColor: 'black', - animate: true, animateOnInteraction: true, includeMath: true }; + animate: true, animateOnInteraction: true }; evaluate( id, data, config ); + injectFunctions( id, { cos: cos, sin: sin, sqrt: sqrt, findRoot: findRoot } ); + } parent.update( id );