3 comments

  • spencerflem4 hours ago
    My favorite maze algorithm is this one: <a href="https:&#x2F;&#x2F;cs.wellesley.edu&#x2F;~pmwh&#x2F;papers-fcpcg&#x2F;presentation&#x2F;slides.html#&#x2F;labyrinfinite" rel="nofollow">https:&#x2F;&#x2F;cs.wellesley.edu&#x2F;~pmwh&#x2F;papers-fcpcg&#x2F;presentation&#x2F;sli...</a><p>Live demo at: <a href="https:&#x2F;&#x2F;cs.wellesley.edu&#x2F;~pmwh&#x2F;hydrodendron&#x2F;" rel="nofollow">https:&#x2F;&#x2F;cs.wellesley.edu&#x2F;~pmwh&#x2F;hydrodendron&#x2F;</a><p>It allows generating an infinite maze looking at any arbitrary area of the maze, without any loops, using fractal coordinates
    • MrLeap1 hour ago
      Oh I loath how that first link hijacks the back button.
  • vintagedave5 hours ago
    Remarkably simple with great results. I recommend checking out the author’s book Mazes for Programmers: one of the best programming books I’ve ever read. Incredibly clearly explained, and very interesting, which is an excellent combination.
  • hinkley5 hours ago
    Reminds me a little of Hilbert curves.<p>It would be kind of cool to generate an &#x27;infinite&#x27; maze this way by starting the process and only recursing to max depth only for the nodes closest to the exits.