A Crystal port of the Java implementation of the Cassowary constraint solving algorithm
In other words, this is an algorithm to calculate constraint based GUI layouts.
Add this to your application's shard.yml
:
dependencies:
kiwi:
github: da1nerd/kiwi.cr
require "kiwi"
solver = Kiwi::Solver.new
x = Kiwi::Variable.new("x")
solver.add_constraint(x + 2 == 20)
solver.update_variables
puts x.value # => 18
crystal run --release spec/benchmark.cr
- Fork it (https://github.com/da1nerd/kiwi.cr/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
- Joel - creator, maintainer