Corey Farwell
Corey Farwell
i think we might be fine since ruby's `IPAddr` supports IPv6: ``` [7] pry(main)> IPAddr.new('fe80:cd00::211e:729c').to_i => 338292682821229838246455806028416971420 ``` https://github.com/kickstarter/ipcat-ruby/blob/fd9a5f80b3be581af96fd2c80347c3ed2a5ce528/lib/ipcat.rb#L19 once the upstream ipcat merges that pull request, i can pull...
@grivy Your proposed design looks good to me. What does the `CoordType` trait look like?
Or maybe use something like https://github.com/kevinmehall/rust-peg
Am literally working on this right now. Loving nom so far, great job! Thanks for the offer. I'll let you know if I run into any issues
@bluenote10 Very interesting! Thanks for spending time on this. Did you push your branch anywhere? Would be curious to see what changes you made
Another option is to add a `Coord` trait and make the `robust` functions generic: ```rust pub trait Coord { fn x(&self) -> f64; fn y(&self) -> f64; } pub fn...
https://github.com/georust/robust/pull/8
my current feeling is that the georust ecosystem should make use of the [`mint`](https://github.com/kvark/mint) crate. in particular, the [`mint::Point2`](https://docs.rs/mint/0.5.5/mint/struct.Point2.html) type. so in the case of `robust`, we'd add `mint` as...
For reference, this is the library that I used to compile and run exactpred.c: https://github.com/andersforsgren/robust2d
Thanks for the change! Is there a way to accomplish this without removing `no_std`?