Difference between revisions of "A 5-circle incidence theorem"
From JSXGraph Wiki
Jump to navigationJump to searchA WASSERMANN (talk | contribs) |
A WASSERMANN (talk | contribs) |
||
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> |