Christian Reksten-Monsen

Results 22 comments of Christian Reksten-Monsen

Coordinates are not rounded to 2, the print output is rounded to 2. I will look at adding a setting for the print precision. In the mean time you could...

Yeah this is likely rounding issues when you have a large amount of vertices that are very close to each other. Reducing the number of vertices is the best fix,...

Need to explain how to set up the test environment so that developers can run `tox`. This needs to be explained as a step in CONTRIBUTING.md.

Thanks for the interest! The reason I did not implement a separate Polygon class is that the visible vertices algorithm doesn't care about polygons, only `Point`'s and `Edge`'s. So from...

I haven't looked into Visvalingam's algorithm yet, so I am not sure if you specify a resolution like you defined or if you specify a triangle threshold. I just wrote...

I have started working on this.

I'll need to performance test this. Check out the discussion on angle2() in https://github.com/TaipanRex/pyvisgraph/pull/28, by setting COLIN_TOLERANCE to a lower value, like 8, it should solve this problem without any...

These issues are most likely due to floating point issues as I see from the X and Y that the numbers are very large. See [here](https://github.com/TaipanRex/pyvisgraph/blob/documentation/docs/user_manual.rst) take a look at...

With reference to #26, I may just refer this to the user. There are packages like Shapely that can do this for you.

I implemented Pyvisgraph with the assumption that all polygons are distinct, i.e. they do not overlap. That also means that the point of one polygon should not lie on the...