Two reflections I (parallel lines): Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
Line 23: Line 23:
       l3 = board.create('line',[P3,Q3], {color:'black', strokeWidth:1, dash:2}),
       l3 = board.create('line',[P3,Q3], {color:'black', strokeWidth:1, dash:2}),
      
      
       g1 = board.create('line',[P1,P2], {color:'yellow', strokeWidth:1, dash:3}),
       g1 = board.create('segment',[P1,P2], {color:'yellow', strokeWidth:1, dash:3}),
       g2 = board.create('line',[P2,P3], {color:'yellow', strokeWidth:1, dash:3}),
       g2 = board.create('segment',[P2,P3], {color:'yellow', strokeWidth:1, dash:3}),
       h1 = board.create('line',[Q1,Q2], {color:'yellow', strokeWidth:1, dash:3}),
       h1 = board.create('segment',[Q1,Q2], {color:'yellow', strokeWidth:1, dash:3}),
       h2 = board.create('line',[Q2,Q3], {color:'yellow', strokeWidth:1, dash:3});
       h2 = board.create('segment',[Q2,Q3], {color:'yellow', strokeWidth:1, dash:3});





Revision as of 15:19, 29 November 2011

The JavaScript code