Hi. I can confirm that this is still indeed the case with Blender 3.6.7 using the updated Addon version 2.5.4. I'm assuming that the desired output is an object that is mirrored about the twin…
I have just tried this and confirm the described broken behaviour in: 3.4.0 - released - Linux x86 3.6.3 - released - Linux x86 3.6.7 - local build
My hardware will not run version…
Here is my attempt at a solution. It works by adding an extra ring in the model mapping from the fixed number of points used to generate the Nut and the variable number of points specified in the…
Here is the code that I used to remove duplicate faces. Insert just before the return of RemoveDoubles() myFinallist = [] for i in new_faces: if i not in myFinallist: myFinallist.append(i) ne…
I pressed the "Report a bug" button at the top of the page. I'll create a new issue at the link you gave. Thanks
- Here is the code that I used to remove duplicate faces. Insert just before the return of RemoveDoubles() myFinallist = [] for i in new_faces: if i not in myFinallist: …