Bug report and proposed fix for BMesh Operator “Connect_vert_pairs” in special cases

Hello everyone,

These days I’m learing the source code of Blender, and I suppose I have found a bug of BMesh Operator “connect_vert_pairs” in dealing with concave polygons. It will not cause any crash, but do produce unsatisfying results. I’ll first describe the bug in a bug report format, explain the code that cause the problem, and give my proposed fix to it. Before committing my code, I think I should ask reviewers whether it is a bug to be fixed (I didn’t find existing issues talking about this).

Please read the detailed descriptions in my replies below. It may be a bit long…

-------------------------------Bug Report------------------------------------

System Information

Operating system: Windows-10-10.0.19041-SP0 64 Bits

Graphics card: NVIDIA GeForce RTX 2060/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 536.99

(I don’t think these things matter)

Blender Version

version: 3.5.1, branch: blender-v3.5-release, commit date: 2023-04-24 18:11, hash: e1ccd9d4a1d3

(version 4.0.0 alpha also meets the bug. Both the debug version of 4.0.0 and release version of 3.5.1 is tested)

Exact steps for others to reproduce the error

  1. Create a mesh that contain a concave polygon, see example below.

  2. Select the start point and end point, like this:

note that the concave vertex must exactly fall on the connection line between two input points (with distance less than 0.0001m).

  1. perform Vertex/Connect Vertex Path or Vertex/Connect Vertex Pairs will generate unsatisfying results, case1 showing below:

  1. Undo the connection, just move the concave point in x axis by 0.0001m (the CONNECT_EPS defined in bmo_connect_pair.cc), another awkward result (case2) will be produced by performing connection again. The path is not even continuous:

  1. in another similar example below, I move another point on the direction of connection line, this time, Blender gives the error message “Could not connect vertices”. This is case3.

1 Like

--------------------------------------------Code Explanation-----------------------------------

  • In my opinion, the implementation should be more robust to cases above, that the connection path should contain the concave vertex that is extremely close to it. I will explain the cause base on the latest Blender 4.0.0 alpha source code. In these cases, Vertex/Connect Vertex Path and Vertex/Connect Vertex Pairs both calls BMO “connect_vert_pair”(see bmesh_opdefines.cc and bmo_connect_pair.cc).

  • The function causes all these cases is state_step(), which starts from a BMElem in a path and tries to find the next intersection point. Let’s call the starting BMElem ele. In state_step(), BMEdges and BMVerts are separately treated by state_step__face_edges() and state_step__face_verts(). Both these functions traverse one adjacent face loop of ele, trying to find the nearest intersection point in both directions. The found point will update the state linked list and the state is inserted into the heap for sorting. This implementation causes two problems:

  1. it cannot really find the exact next intersection point in a face.

fig5

In the sketch above, the connection path will have two intersections in one concave BMFace, but the concave vertex and the intersection on the edge are treated as different states. If the edge intersection state is chosen, the connection path will simply jump over the concave vertex.

  1. When ele is a BMVert, loop in state_step() do not allow it to find intersections in the BMFace where ele comes from (ele_from in the code). However, when ele is the concave vertex above, it may find another intersection point in its ele_from. This is the root cause of these bugs.

Let’s make it more clear by using case 2 as an example.

  • Starting from START, it check its only adjacent face, face1, finding edge1 as the next intersection edge.

  • Now start from edge1, it only checks face2, since face1 is its ele_from. This is proper for edges though. In face2, it finds an intersection edge first (althought it’s farther away, state_step__face_edges() is called first), adds it to the path, creates state1. Then it finds CONCAVE as a intersection vertex, creates state2.

  • state2 gets processed first since it’s path length is lower. In state2, we start from CONCAVE, but no faces can be checked, because face2 is just its ele_from, and it does not have any other adjacent faces. As a result, the searching is interrupted, we turn to state1.

  • In state1, we start from edge2, and finds END in face3, the searching ends.

  • Now see what we get as a connection path: START–edge1–edge2–END, while CONCAVE is neglected. In current case (case2), connection line between edge1 and edge2 cuts existing edges of the concave face, so it cannot pass BM_face_splits_check_legal() in the nested BMO “connect_verts” (see bmo_connect.cc) call, so the resulted path misses the middle fragment.

  • If you move CONCAVE -0.0001m on x axis, case2 turns into case1, you will find a direct cut between edge1 and edge2, bypassing CONCAVE.

---------------------------------------------Proposed Fix--------------------------------------------

  • I have already written the fixed code, and tested on the cases above. Because of space reasons, I do not show my implementation here. If the fix is really needed, Please inform me and I’ll make a pull request. Here I try to explain the fix:
  1. Split state_step__face_edges() and state_step__face_verts() into three functions:

A. function to find the nearest intersection edge in a BMFace, called state_step__face_edges_find(). it mainly copies the do-while loop in state_step__face_edges().
B. function to find the nearest intersection vertex in a BMFace, called state_step__face_verts_find(). it mainly copies the do-while loop in state_step__face_verts().
C. function to add new states, called state_step__face_add() , mainly copies the for(i = 0:2) loop in the original version. It takes element type sign as input, so it can deal with both BMEdges states and BMVert states.

  1. In state_step(). when ele is BMEdge: in each BM_LOOPS_OF_EDGE loop, call A,B,C in sequence. It makes sure that the nearest BMElem is added to the new state at last, reducing states to search and possible confusion.

  2. In state_step(). when ele is BMVert: in each BM_LOOPS_OF_VERT loop, stop checking (l_start->f != ele_from), then call A,B,C in sequence like in 2. The rest of the source code is not changed.
    After doing this, case1 and case2 will generate a connection path containing the concave vertex. case3 will no longer raise an error and generate a connection path containing all relative vertices. I also test some regular cases on convex meshes such as a sphere, it functions well.

  • Since I do not know how to test the new implementation in a complete way, I’m not sure if it will make some working cases fail, but I’ve tried to reduce the changes in the source code as much as possible.

A very strange report case. As far as I remember, Connect vertex path fails even in much more primitive cases
изображение

a file if is interesting

Thanks a lot for your reply, I can reproduce your results with the blend file you provide.

If you move your models closer to global origin, you’ll find that the connection can be performed :smiley:. This may be caused by some floating point number round-off error. It seems it’s different from the case I report. If I find the possible cause, I will reply later.

2 Likes

Technically it is a part of a terrain geometry which was built from isolines and which require vertex connecting quite often to fix triangulation and refine the topology. This issue has been known for a long time, so I guess it better be fixed at some point.

1 Like

I found that increasing CONNECT_EPS from 0.0001m to 0.001m will solve the problem. CONNECT_EPS is defined in bmo_connect_pairs.cc, it’s a threshold used to judge intersection of an edge/vertex with the connection path. It seems that it is too strict in your case, maybe the coordinates is large so that calculation errors are also magnified, exceeding CONNECT_EPS. So connect_vert_pair BMO just cannot detect the endpoint to complete the path.

Maybe Blender should give users freedom to change CONNECT_EPS in the editor. I’m don’t know how to find a value univerally applicable to all cases.

Here is the .blend file to reproduce my results. Try moving the concave vertex in x-axis in 0.00005m step to check case1 and case2.

https://pixeldrain.com/u/XbF6WKZ6

Maybe it could be dynamic instead of static - to check the coordinates of a vertices and running Vertex Connect with appropriate CONNECT_EPS value

Case 1 works by default, for the case 2 tweak in -0.0005 helps

That’s a good idea. Maybe you can start a topic to inform person in charge to add this feature.

At least we now know what cause the issue.
Thank you for the research in this area.

Should I raise an issue for the case you meet in Blender project? I think it will be fixed soon. :wink:

I don’t know, I guess it may worth an attempt.