Difference between revisions of "A 5-circle incidence theorem"

From JSXGraph Wiki
Jump to navigationJump to search
Line 20: Line 20:
 
   s[k] = brd.create('segment',[A[k], A[(k + 2) % 5]],{strokeColor:'blue',strokeWidth:1});
 
   s[k] = brd.create('segment',[A[k], A[(k + 2) % 5]],{strokeColor:'blue',strokeWidth:1});
 
}
 
}
 +
 +
 +
var attB = {name:'',strokeColor:'#EA0000',fillColor:'#EA0000'};
 +
for (k = 0; k < 5; k++) {
 +
  B[k] = brd.create('intersection', [s[k], s[(k-1)%5], attB);
 +
}
 +
  
 
</jsxgraph>
 
</jsxgraph>

Revision as of 14:09, 13 August 2019