Project

dla

0.0
The project is in a healthy, maintained state
A tool to compute and export trees built using a DLA (Diffusion-limited Aggregation) algorithm.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 13.0
~> 3.13
~> 0.22

Runtime

 Project Readme

DLA

A Ruby library implementing Diffusion-Limited Aggregation.

Features

  • Produces simple text file fully describing final render
  • Keeps full tree, not just cell positions
  • Keeps building history

Planned features

  • Demo app
  • Move "Save .dla" to library
  • Display saved .dla file
  • Upscale
  • Binary .dla format
  • Load state from .dla file
  • Height map
  • Export bitmap
  • Make history optional
  • Multithreading
  • Make Demo app human-friendly
  • Make direction vectors configurable

Installation

Install the gem and add to the application's Gemfile by executing:

$ bundle add dla

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install dla

Usage

Default arguments are fine (1280x720 bounds)

Let it run for a while:

require 'dla'
root = DLA::Node.root
n = DLA::Node.new root:
loop do
  n.move
  if n.parent # Node has found another node
    n = DLA::Node.new root:
  end
  break if bored
end

Inspect state:

root.nodes.each{|n| puts n}

The history string is made of the letters n, s, e, w to describe the directions followed during the calls to #move. NOTE: The Y axis is oriented to the North.

Demo app

A quick and dirty demo app is in ./bin/dla.rb.

Because Rubygems are not supposed to be used to distribute apps, you'll need to run the app from the project directory after running bundle install in order to satisfy the requirement of my fork of TTY:Box.

Development

After checking out the repo, run bundle exec bin/setup to install dependencies. Then, run bundle exec rake spec to run the tests. You can also run bundle exec bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/ameuret/dla. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the Unlicense

Code of Conduct

Everyone interacting in the DLA project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.