<script src="http://spelprogrammering.nu/simple.js">

function start()
{
  v = 0;
  r = 0;
  math.axes();
}

function update()
{
  math.polarPoint(v, r, 2, "red");
  v += 0.01;
  r = 0.1 * v;
}

</script>
        
Gå tillbaka