-
-
Save kevmoo/a559420eed617dab7a196b5ea0b64fba to your computer and use it in GitHub Desktop.
Sunflower
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Copyright 2011 the Dart project authors. All rights reserved. | |
Use of this source code is governed by a BSD-style license | |
that can be found in the LICENSE file. --> | |
<h2>Dr. Fibonacci's Sunflower Spectacular</h2> | |
<div> | |
<canvas id="canvas" width="300" height="300"></canvas> | |
</div> | |
<div> | |
<label>0</label> | |
<input id="slider" type="range" max="1000" value="500" /> | |
<label>1000</label> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Copyright 2011 the Dart project authors. All rights reserved. | |
// Use of this source code is governed by a BSD-style license | |
// that can be found in the LICENSE file. | |
import 'dart:html'; | |
import 'dart:math' as math; | |
void main() { | |
Sunflower(); | |
} | |
class Sunflower { | |
static const orange = 'orange'; | |
static const seedRadius = 2; | |
static const scaleFactor = 4; | |
static const tau = math.pi * 2; | |
static const maxD = 300; | |
static final phi = (math.sqrt(5) + 1) / 2; | |
static final center = maxD / 2; | |
final context = (querySelector('#canvas') as CanvasElement).context2D; | |
int seeds; | |
Sunflower() { | |
InputElement slider = querySelector('#slider'); | |
void update() { | |
seeds = int.parse(slider.value); | |
drawFrame(); | |
} | |
slider.onChange.listen((_) => update()); | |
update(); | |
} | |
// Draw the complete figure for the current number of seeds. | |
void drawFrame() { | |
print('seed value = $seeds'); | |
context.clearRect(0, 0, maxD, maxD); | |
for (var i = 0; i < seeds; i++) { | |
var theta = i * tau / phi; | |
var r = math.sqrt(i) * scaleFactor; | |
var x = center + r * math.cos(theta); | |
var y = center - r * math.sin(theta); | |
drawSeed(x, y); | |
} | |
} | |
// Draw a small circle representing a seed centered at (x,y). | |
void drawSeed(num x, num y) { | |
context | |
..beginPath() | |
..lineWidth = 2 | |
..fillStyle = orange | |
..strokeStyle = orange | |
..arc(x, y, seedRadius, 0, tau, false) | |
..fill() | |
..closePath() | |
..stroke(); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Copyright 2011 the Dart project authors. All rights reserved. */ | |
/* Use of this source code is governed by a BSD-style license */ | |
/* that can be found in the LICENSE file. */ | |
h2 { | |
margin-bottom: 0; | |
text-align: center; | |
} | |
div { | |
text-align: center; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment