Hacker News new | ask | show | jobs
by marcodiego 1642 days ago
> The method presented by the author is the only method I've ever known.

The recursive implementation always seemed more intuitive for me.

1 comments

Could you please share it? I'm not familiar with it.
1. Draw a triangle.

2. Draw 3 triangles within that triangle.

3. For each new triangle, execute step 2 and then 3.

Ah, of course! Thank you.