CodingTrain / Suggestion-Box

A repo to track ideas for topics
573 stars 86 forks source link

Space filling curve fractals video idea #3

Open Bamboy opened 8 years ago

Bamboy commented 8 years ago

I'd like to see how to program something like what's seen in this youtube video. https://www.youtube.com/watch?v=RU0wScIj36o

meiamsome commented 8 years ago

You might want to check out Dan's tutorial on L-Systems here: https://www.youtube.com/watch?v=E1B4UoSQMFw

You can implement many space filling curves as L-Systems, For example:

Hilbert Curve: Angle 90(deg) Axiom: "A" rules: A -> -BF+AFA+FB- B -> +AF-BFB-FA+

Or Peano curves: Angle 90(deg) Axiom: "A" rules: A -> AFBFA-F-BFAFB+F+AFBFA B -> BFAFB+F+AFBFA-F-BFAFB

Hope this helps you, and I still can see the use in a specific tutorial, just thought I'd mention this!

frclba commented 5 years ago

Video for Reference

vjoao commented 5 years ago

+1

Caster commented 9 months ago

Isn't this one completed now?