Skip to content

Instantly share code, notes, and snippets.

@butchi
Last active December 23, 2015 13:11
Show Gist options
  • Save butchi/bf211c561fa90acb785f to your computer and use it in GitHub Desktop.
Save butchi/bf211c561fa90acb785f to your computer and use it in GitHub Desktop.
ツインドラゴン(Mathematicaショートフラクタルシリーズ) ref: http://qiita.com/butchi_y/items/6a32ee40c9674d8cb8c6
Graphics[Point[
Transpose[{Re[#], Im[#]} &[
Table[FromDigits[IntegerDigits[k, 2], 1 + I], {k, 0, 1023}]
]]
]]
Graphics[Point[
Transpose[{Re[#], Im[#]} &[
Nest[Join[#, # + 1 - Im[Last[#]] + Re[Last[#]] I] &, {0}, 10]
]]
]]
Graphics[Point[Transpose[{Re[#],Im[#]}&[Nest[Join[#,#+1-Im[Last[#]]+Re[Last[#]] I]&,{0},10]]]]]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment