Efficient 2D triangle-triangle subtraction, removing one triangle from another, returning the remainder as triangles

354 views Asked by At

I'm interested in writing a my own function that subtracts one 2D triangle from another, returning the remainder as a n array of triangles. (not using an existing geometry library)

Two examples of input & output, triangles are numbered, order isn't important.

enter image description here


While I'm familier with these kinds of algorithms, this seems like a general enough problem that there may be a known robust solution already written (if not I may look into writing one as an answer to this question)

1

There are 1 answers

1
Nicolas On

I recently work on this problem and resolved it.

I tried to describe all the possibilities of layering and I got there. There are 16 cases classified by number of points of the dimunuende triangle in the diminishing triangle and of the dimunutor in the diminuende. For information in the subtraction a - b = c, a is the dimunende and b is the diminutive, c is the difference. In the subtraction table, the diminishing triangle is represented in blue and the diminutive in red, at the bottom right of each box are indicated the points of each triangle included in the other. The number of triangles in the difference is at the top left of each box and finally the number of intersections in red at the bottom left.

My method consist to count intersections and points insides triangles. In some cases we must also determine the validity of the triangles either by intersection detection or by checking that it does not contain points. Finally i think, I believe, I managed to solve this problem.

Take a look on this forum for code source and more informations : https://gb32.proboards.com/post/2112/thread