Difference between revisions of "Circle with ticks"

From JSXGraph Wiki
Jump to navigationJump to search
(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...")
 
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 23:48, 24 March 2014

The underlying JavaScript code