Matt Hunzinger
Matt Hunzinger
This crate still needs a lot more documentation and examples to showcase it's features
Currently a chord is implemented as a set of intervals, which means they must be in order. I'm not sure if it's possible to create a chord, for example an...
Most types in this crate could benefit from a FromStr parsing impl
Currently `f32` is used as a placeholder type for most structs and functions. I'd like to change these to be generic over the [`num::Float`](https://docs.rs/num/latest/num/trait.Float.html) trait
Combining vehicle sensor data is a core part of most flight controllers so I think it'd be very useful to have an EKF for this here. I'm currently looking to...
This creates an iterator over a `VNode`'s template nodes. I'm thinking if we could implement `IntoDynNode` for `TemplateNode` that would let us iterate and map children #1177
Hey all! I've been having an issue trying to validate a string ```hs {-@ type Scheme = {s:String | isValid s} @-} {-@ f :: Scheme @-} f :: String...
## Feature Request Currently when `dx fmt` fails, I usually see a panic with little indication to what's causing the error. While formatting is being worked out I think it'd...
So I've heard staff can be confusing... My original thought was to name this after a musical staff because that's central idea of what it supports. However, I really like...
Right now this crate only supports 4/4 time and anything else will lead to spacing issues. This is because [`Duration`](https://docs.rs/staff/latest/staff/render/chord/enum.Duration.html) returns beats in 4/4. Somehow we should be able to...