Circle with ticks: Difference between revisions

From JSXGraph Wiki
(Created page with "<jsxgraph width="600" height="500"> var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:false,boundingbox:[-2,2,2,-2],keepaspectratio:true}); </jsxgraph> ===The underlying JavaScrip...")
 
No edit summary
Line 1: Line 1:
<jsxgraph width="600" height="500">
<jsxgraph width="600" height="500">
var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:false,boundingbox:[-2,2,2,-2],keepaspectratio:true});
var brd = JXG.JSXGraph.initBoard('jxgbox',{axis:false,boundingbox:[-5,5,5,-5],keepaspectratio:true});
 
var p = brd.create('point', [0,0]);
var q = brd.create('point', [3,3]);
var circ = brd.create('circle', [p, q]);
</jsxgraph>
</jsxgraph>



Revision as of 21:48, 24 March 2014

The underlying JavaScript code