Boolean General Fuse Implementation #840
-
|
Hey NTS Community, I'm trying to achieve an OpenCASCADE-like Boolean General Fuse. To explain what I mean, take a look at the following images. Given Polygon 1 with:
And Polygon 2 with:
I want a result that "Fuses" / "Unions" the inputs so it contains all edges (no duplicates) resulting from the intersection. I played around with
At the end, I want to be able to feed the resulting edges into a @FObermaier, I saw that you are quite active in here. I would really appreciate you guiding me in the right direction. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
I was able to implement the desired behavior by having a closer look at what it means to use primitives like |
Beta Was this translation helpful? Give feedback.



I was able to implement the desired behavior by having a closer look at what it means to use primitives like
Polygonvs.MultiLineStringand how this affected my results. I also applied snapping to my geometries to handle self-intersections better.