Magnetized points: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
var brd = JXG.JSXGraph.initBoard('box', {axis:false, boundingbox: [-5, 5, 5, -5]}),
var brd = JXG.JSXGraph.initBoard('box', {axis:false, boundingbox: [-5, 5, 5, -5]}),
   li = brd.create('line', [1,2,3]),
   li = brd.create('line', [1,2,3]),
   p = brd.create('point', [0,0], {attractors: [li], attractorDistance:0.2, snatchDistance: 2});
  ci = brd.create('circle', [[2,2],1]),
 
  p0 = brd.create('point', [-2,0], {color:'blue'}),
 
   p = brd.create('point', [-2,-2], {attractors: [li,ci,p0], attractorDistance:0.2, snatchDistance: 2});
</jsxgraph>
</jsxgraph>


===The underlying JavaScript code===
===The underlying JavaScript code===
<source lang="javascript">
<source lang="javascript">
var brd = JXG.JSXGraph.initBoard('box', {axis:false, boundingbox: [-5, 5, 5, -5]}),
  li = brd.create('line', [1,2,3]),
  ci = brd.create('circle', [[2,2],1]),
  p0 = brd.create('point', [-2,0], {color:'blue'}),
  p = brd.create('point', [-2,-2], {attractors: [li,ci,p0], attractorDistance:0.2, snatchDistance: 2});
</source>
</source>


[[Category:Examples]]
[[Category:Examples]]

Latest revision as of 10:45, 26 January 2012

The underlying JavaScript code

var brd = JXG.JSXGraph.initBoard('box', {axis:false, boundingbox: [-5, 5, 5, -5]}),
   li = brd.create('line', [1,2,3]),
   ci = brd.create('circle', [[2,2],1]),
   p0 = brd.create('point', [-2,0], {color:'blue'}),
   p = brd.create('point', [-2,-2], {attractors: [li,ci,p0], attractorDistance:0.2, snatchDistance: 2});