Created
December 17, 2015 12:38
-
-
Save butchi/6d070f3680df45202b04 to your computer and use it in GitHub Desktop.
ドラゴン曲線(Mathematicaショートフラクタルシリーズ) ref: http://qiita.com/butchi_y/items/4aa9a15cdffa40587544
This file contains hidden or 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
Graphics[Line[ | |
{Re[#], Im[#]} & /@ | |
Join[ | |
{0}, | |
Accumulate[(-1)^(Nest[Join[# + 1, Reverse[#] - 1] &, {0}, 11]/4)] | |
] | |
]] |
This file contains hidden or 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
Graphics@Line[{Re[#],Im[#]}&/@FoldList[Plus,0,I^Nest[Join[#,Reverse@#+1]&,{0},14]]] |
This file contains hidden or 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
Join[# + 1, Reverse@# - 1] & |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment