Robin Moussu

Results 31 comments of Robin Moussu

> In rolisteam, I use same mechanism (parsing by hand) to manage formula inside character sheet. It could be good to rewrite it with a dedicated tool. I will look...

I fixed the mock. `12d100g1` should give `12` (since each die will create a new group), but it dosen't work, I am really surprised. I tested with an unmodified version...

> I see that you are using a lot of C++ specific/new stuffs: template, lambda, etc.. > So you will probably reduce the code line count by a huge amount...

I played with the idea of decomposing a concave polygon into a set of convex polygon a bit, and I have a POC. I am not sure that I will...

I tested it a bit more, and unfortunately the triangulation approach I took doesn't works. ![image](https://user-images.githubusercontent.com/6200547/84751204-95ca5880-afbc-11ea-84be-7914c87a6d95.png) The hull is the black line, and the orange triangles are the one detected...

I just noticed that there is maybe a way to solve the issue by using [`ConstrainedDelaunayTriangulation`](https://docs.rs/spade/1.8.2/spade/delaunay/struct.ConstrainedDelaunayTriangulation.html) instead of `FloatDelaunayTriangulation` and adding all edges of the hull as constrains for the...

I just noticed that there is maybe a way to solve the issue by using [`ConstrainedDelaunayTriangulation`](https://docs.rs/spade/1.8.2/spade/delaunay/struct.ConstrainedDelaunayTriangulation.html) instead of `FloatDelaunayTriangulation` and adding all edges of the hull as constrains for the...

I also have the same question for `Compound`. I guess, it's the same answer?

I don't know what I've done, I guess I did a syntax error and was too tired, so I just iterated over my `ConvexPolgon` manually.

It seems that it should be possible to run tests, by it doesn't work for me. I have 3 tests (`gpx_write`, `gpx_read`, and `read`) in a file named `gpx_writer_write_test_tour_generation`, but...