Sierpinski triangle: Difference between revisions

From JSXGraph Wiki
No edit summary
No edit summary
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
This example shows the power of JavaScript and requires a bit more advanced JavaScript programming.
This example shows the power of JavaScript and requires a bit more advanced JavaScript programming.
<html>
<html>
<link rel="stylesheet" type="text/css" href="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraph.css" />
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/prototype.js"></script>
<script type="text/javascript" src="http://jsxgraph.uni-bayreuth.de/distrib/jsxgraphcore.js"></script>
<form><input type='button' value="Next iteration" onClick="run();"></form>
<form><input type='button' value="Next iteration" onClick="run();"></form>
<div id="box" class="jxgbox" style="width:500px; height:400px;"></div>
</html>
<script language="JavaScript">
<jsxgraph width="500" height="400" box="box">
         board = JXG.JSXGraph.initBoard('box', {originX: 10, originY: 390, unitX: 380, unitY: 380});
         board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});
                  
                  
         var level = 0;
         var level = 0;
         function run() {
         function run() {
             JXG.JSXGraph.freeBoard(board);         
             JXG.JSXGraph.freeBoard(board);         
             board = JXG.JSXGraph.initBoard('box', {originX: 10, originY: 390, unitX: 380, unitY: 380});             
             board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});             
             level++;
             level++;
             board.suspendUpdate();
             board.suspendUpdate();
Line 28: Line 25:
          
          
         function drawPolygon(xCoords, yCoords,level) {
         function drawPolygon(xCoords, yCoords,level) {
             p1 = board.createElement('point', [xCoords[0], yCoords[0]], {visible:false,name:'',withLabel:false});
             p1 = board.create('point', [xCoords[0], yCoords[0]], {visible:false,name:'',withLabel:false});
             p2 = board.createElement('point', [xCoords[1], yCoords[1]], {visible:false,name:'',withLabel:false});
             p2 = board.create('point', [xCoords[1], yCoords[1]], {visible:false,name:'',withLabel:false});
             p3 = board.createElement('point', [xCoords[2], yCoords[2]], {visible:false,name:'',withLabel:false});
             p3 = board.create('point', [xCoords[2], yCoords[2]], {visible:false,name:'',withLabel:false});
             var colors=['#000000','#665566','#994499','#BB33BB','#EE99FF','#FFCCFF'];
             var colors=['#000000','#665566','#994499','#BB33BB','#EE99FF','#FFCCFF'];
             l1 = board.createElement('line',[p1,p2],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l1 = board.create('line',[p1,p2],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l2 = board.createElement('line',[p2,p3],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l2 = board.create('line',[p2,p3],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l3 = board.createElement('line',[p3,p1],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l3 = board.create('line',[p3,p1],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
         }
         }


Line 64: Line 61:
         }
         }
         paint();
         paint();
</script>
</jsxgraph>
</html>


=== References ===
=== References ===
Line 73: Line 69:


<source lang="javascript">
<source lang="javascript">
         board = JXG.JSXGraph.initBoard('box', {originX: 10, originY: 390, unitX: 380, unitY: 380});
         board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});
                  
                  
         var level = 0;
         var level = 0;
         function run() {
         function run() {
             JXG.JSXGraph.freeBoard(board);         
             JXG.JSXGraph.freeBoard(board);         
             board = JXG.JSXGraph.initBoard('box', {originX: 10, originY: 390, unitX: 380, unitY: 380});             
             board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});             
             level++;
             level++;
             board.suspendUpdate();
             board.suspendUpdate();
Line 94: Line 90:
          
          
         function drawPolygon(xCoords, yCoords,level) {
         function drawPolygon(xCoords, yCoords,level) {
             p1 = board.createElement('point', [xCoords[0], yCoords[0]], {visible:false,name:'',withLabel:false});
             p1 = board.create('point', [xCoords[0], yCoords[0]], {visible:false,name:'',withLabel:false});
             p2 = board.createElement('point', [xCoords[1], yCoords[1]], {visible:false,name:'',withLabel:false});
             p2 = board.create('point', [xCoords[1], yCoords[1]], {visible:false,name:'',withLabel:false});
             p3 = board.createElement('point', [xCoords[2], yCoords[2]], {visible:false,name:'',withLabel:false});
             p3 = board.create('point', [xCoords[2], yCoords[2]], {visible:false,name:'',withLabel:false});
             var colors=['#000000','#665566','#994499','#BB33BB','#EE99FF','#FFCCFF'];
             var colors=['#000000','#665566','#994499','#BB33BB','#EE99FF','#FFCCFF'];
             l1 = board.createElement('line',[p1,p2],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l1 = board.create('line',[p1,p2],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l2 = board.createElement('line',[p2,p3],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l2 = board.create('line',[p2,p3],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l3 = board.createElement('line',[p3,p1],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
             l3 = board.create('line',[p3,p1],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
         }
         }



Latest revision as of 13:36, 8 June 2011

This example shows the power of JavaScript and requires a bit more advanced JavaScript programming.

References

The underlying JavaScript code

        board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});
                
        var level = 0;
        function run() {
            JXG.JSXGraph.freeBoard(board);        
            board = JXG.JSXGraph.initBoard('box', {boundingbox: [-0.02631578947368421, 1.0263157894736843, 1.2894736842105263, -0.02631578947368421]});            
            level++;
            board.suspendUpdate();
             paint();
            board.unsuspendUpdate();
        }
        
        function paint() {
            // Initial triangle
            var xCoords = [0, 1, 0.5];
            var yCoords = [0, 0, 1];
            drawPolygon(xCoords, yCoords, level);
            drawTriangle({x:0,y:0}, {x:1,y:0}, {x:0.5,y:1}, level);
        }
        
        function drawPolygon(xCoords, yCoords,level) {
            p1 = board.create('point', [xCoords[0], yCoords[0]], {visible:false,name:'',withLabel:false});
            p2 = board.create('point', [xCoords[1], yCoords[1]], {visible:false,name:'',withLabel:false});
            p3 = board.create('point', [xCoords[2], yCoords[2]], {visible:false,name:'',withLabel:false});
            var colors=['#000000','#665566','#994499','#BB33BB','#EE99FF','#FFCCFF'];
            l1 = board.create('line',[p1,p2],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
            l2 = board.create('line',[p2,p3],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
            l3 = board.create('line',[p3,p1],{straightFirst:false,straightLast:false,strokeColor:colors[level%6],name:'',withLabel:false});
        }

        function drawTriangle(a, b, c, level) {
            if (level==0) return;
            level -= 1;

            // In das übergebene Dreieck, wird ein auf dem Kopf stehendes Dreieck eingefügt
            var xCoords = [c.x, (c.x+b.x)/2, (a.x+c.x)/2];
            var yCoords = [b.y, (c.y+a.y)/2, (c.y+a.y)/2];

            drawPolygon(xCoords, yCoords,level);

            // 3 neue Dreiecke bestimmen
            a1 = a;
            b1 = {x:c.x, y:b.y};
            c1 = {x:(a.x+c.x)/2, y:(c.y+a.y)/2};
            drawTriangle(a1, b1, c1, level);

            a2 = {x:c.x, y:b.y};
            b2 = b;
            c2 = {x:(c.x+b.x)/2, y:(c.y+a.y)/2};
            drawTriangle(a2, b2, c2, level);

            a3 = {x:(a.x+c.x)/2, y:(c.y+a.y)/2};
            b3 = {x:(c.x+b.x)/2, y:(c.y+a.y)/2};
            c3 = c;
            drawTriangle(a3, b3, c3, level);
        }
        paint();