Difference between revisions of "Three touching circles"

From JSXGraph Wiki
Jump to navigationJump to search
Line 8: Line 8:
 
     a3 = brd.create('segment', [C,A], {name:'a3', withLabel:true}),
 
     a3 = brd.create('segment', [C,A], {name:'a3', withLabel:true}),
 
     c1 = brd.create('circle', [A,  
 
     c1 = brd.create('circle', [A,  
             function(){ return A.Dist(B); }]);
+
             function(){ var r1 = (C.Dist(A)-B.Dist(C)+A.Dist(B))/2.0;
 +
                        return r1; }
 +
            ]);
  
 
      
 
      
  
 
</jsxgraph>
 
</jsxgraph>

Revision as of 12:41, 8 November 2011