Skip to content

Instantly share code, notes, and snippets.

@Cartman0
Created August 2, 2015 06:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cartman0/8af6b9f4e5458bd255ec to your computer and use it in GitHub Desktop.
Save Cartman0/8af6b9f4e5458bd255ec to your computer and use it in GitHub Desktop.
Canvas でFractal Tree を描く
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>フラクタルツリー</title>
<style>
#canvas {
border: 1px solid gray;
display: block;
margin-left: auto;
margin-right: auto;
}
</style>
<body>
<h1>フラクタルツリー</h1>
<canvas id="canvas" width="300" height="300"></canvas>
<script>
window.onload = function(){
(function(){
drawFractalTree('canvas', {x: 150, y: 300}, 50, 0.8, 40, 10, {color: 'green', width: 2}, 10);
function drawFractalTree(canvas_id, pos0, len0, scale, angle_deg, step, line_config, interval_ms ){
var canvas = document.getElementById(canvas_id);
var c = canvas.getContext("2d");
var i = 0;
//独自関数の実行
fractalTree(pos0.x, pos0.y, len0, 0, step);
//独自関数fractalの定義
function fractalTree(x1, y1, len, deg, step){
if(step <= 0){
return false;
}
/* ここに関数の中から自分自身を呼びだす関数を設定します */
var x2 = x1 + len * Math.sin(deg / 180 * Math.PI);
var y2 = y1 - len * Math.cos(deg / 180 * Math.PI);
setTimeout(function(){
line(x1, y1, x2, y2);
}, interval_ms * i);
i++;
fractalTree(x2, y2, len * scale, deg - angle_deg, step-1);
fractalTree(x2, y2, len * scale, deg + angle_deg, step-1);
}
//line()
function line(x1, y1, x2, y2){
c.beginPath();
c.moveTo(x1, y1)
c.lineTo(x2, y2);
if(line_config.width){
c.lineWidth = line_config.width;
}
if(line_config.color){
c.strokeStyle = line_config.color;
}
c.stroke();
}
}
})();
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment