Anonymous
Not logged in
Log in
JSXGraph Wiki
Search
Turtle snow fall
From JSXGraph Wiki
Namespaces
Page
Discussion
More
More
Page actions
Read
View source
History
Revision as of 19:45, 21 December 2008 by
A WASSERMANN
(
talk
|
contribs
)
(
diff
)
← Older revision
|
Latest revision
(
diff
) |
Newer revision →
(
diff
)
function side(size, level) { if (level==0) { t.fd(size); } else { side(size/3, level-1); t.lt(60); side(size/3, level-1); t.rt(120); side(size/3, level-1); t.lt(60); side(size/3, level-1); } } function snowflake(size, level) { (3).times(function() { side(size, level); t.rt(120); }); } snowflake(5,3);
References
http://www.mathcurve.com/fractals/koch/koch.shtml
Categories
:
Examples
Turtle Graphics
Fractals
Navigation
Navigation
Main page
Community portal
Current events
Recent changes
Random page
Help
Examples
Wiki tools
Wiki tools
Special pages
Page tools
Page tools
User page tools
More
What links here
Related changes
Printable version
Permanent link
Page information
Page logs
Categories
Categories
Examples
Turtle Graphics
Fractals