Skip to content

Instantly share code, notes, and snippets.

@brito
Created April 30, 2014 20:29
Show Gist options
  • Select an option

  • Save brito/11437477 to your computer and use it in GitHub Desktop.

Select an option

Save brito/11437477 to your computer and use it in GitHub Desktop.
Fractal SVG
/* Fractal SVG */
<svg>
<defs>
<path id="l0" d="M0 0,2 0,1 1.732,z" />
<g id="l1">
<use xlink:href="#l0" transform="matrix(0.5 0 0 0.5 0 0)" />
<use xlink:href="#l0" transform="matrix(0.5 0 0 0.5 1 0)" />
<use xlink:href="#l0" transform="matrix(0.5 0 0 0.5 0.5 0.866)" />
</g>
<g id="l2">
<use xlink:href="#l1" transform="matrix(0.5 0 0 0.5 0 0)" />
<use xlink:href="#l1" transform="matrix(0.5 0 0 0.5 1 0)" />
<use xlink:href="#l1" transform="matrix(0.5 0 0 0.5 0.5 0.866)" />
</g>
</defs>
<use xlink:href="#l2" transform="scale(121)" />
</svg>
// alert('Hello world!');
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment