Circle approximation: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 25: Line 25:
cOut.updateDataArray = function() {
cOut.updateDataArray = function() {
   var i;
   var i;
   var s = circ.getRadius()/Math.cos(Math.PI*2.0/n.Value());
   var s = circ.getRadius()/Math.cos(Math.PI/n.Value());
   this.dataX = [p0.X()+s];
   this.dataX = [p0.X()+s];
   this.dataY = [p0.Y()];
   this.dataY = [p0.Y()];
Line 35: Line 35:
   }
   }
}
}


brd.update();
brd.update();

Revision as of 09:36, 24 June 2009

The underlying JavaScript code