Skip to content

Instantly share code, notes, and snippets.

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