cassowary-rs icon indicating copy to clipboard operation
cassowary-rs copied to clipboard

A Rust implementation of the Cassowary constraint solving algorithm

Results 8 cassowary-rs issues
Sort by recently updated
recently updated
newest added

* adds a type parameter to many types, representing a solver variable type * removes `Variable` in favor of tools for writing your own domain specific variable types * adds...

Are you looking for maintainers?

Rationale: I have a unique reproducible way of generating keys per variable; using that saves me from creating a `Variable` → key map.

I'm trying to find a maximal solution for my problem. I found an example where they maximize P [here](https://github.com/slightlyoff/cassowary.js/issues/47#issuecomment-125915368), which translated to Rust would be: ``` let p = Variable::new();...

I am using edit variables to add variables that represent the width and height of the UI viewport. I am thinking these should probably be of REQUIRED strength, but the...

I just wanted to mention here that I've forked this repo to https://github.com/schell/casuarius. Our versions have diverged quite a bit and I don't want to put extra burden on maintaining...