用 Ruby 生成迷宫
我最近一直在努力提高我的 Ruby 技能,并发现了一个关于迷宫生成的漂亮而时髦的演示。
我想实现一些算法,然后生成图像迷宫的文件。
我对工作的第二部分非常不确定:“生成迷宫的图像”。我想要一个简单的 gem,可以让我将迷宫映射到图像。
也许很快的某个时候,我也希望将整个东西作为一个 Ruby on Rails Web 应用程序。
我怎样才能把所有这些放在一起?
I have been working on polishing my Ruby skills lately and came across a nice snazzy presentation on maze generation.
I would want to implement a couple of algorithms and then generate image files for the mazes.
I am quite unsure on the second part of the job: "generating image of the maze". I want a simple gem that lets me map my mazes to image.
Maybe sometime soon I would also want the whole thing as a Ruby on Rails application for the web.
How can I put all of it together?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
chunky_png gem 绝对是一个值得尝试的东西。
chunky_png gem is definitely a thing that worth trying out.
使用 RMagick 非常简单:
It's very easy using RMagick:
时间继续前进。贾米斯·巴克 (Jamis Buck) 现在在实用书架上完成了一本名为《程序员的迷宫》的书。我认为这是您有关 Ruby 和 Maze 的参考资料。
Time moves on. Jamis Buck has now completed a book called 'mazes for programmers' on the pragmatic bookshelf. I think this is your go to reference for Ruby and Mazes.