@Victor Stepanov The current addon has 6 modules, separated in init, globals, operators, props, utils and ui. Some thousand lines of code. Around 20 properties for the N-menu, 18 (bigger) functions. Here's a picture of what it creates in the end, with all these parameters. Manifold Object to be able to 3D print it directly. Uses bmesh bevels as they are very much better to work with than the bevel modifier, also implements functions to do solidify without the solidify modifier as this often creates nonsense. No, of course I have no video about that, I'm until now no content creator like you... ;) Main issues are that Blender's API is a hell... hahaha... You think it's simple and you think, ah, this can be done in some hours with Python and then you end up with weeks of work. :) Blender is really bad when you try to create simple constructions like this one. If you need to add a vertex somewhere which should be part of an edge of another face you find out that Blender adds the Vertex at the correct position, but doesn't integrate that into the desired edge. Instead, you need to create the face with calculating all the needed vertices on your own and then the vertex get added where it should. This was the biggest problem in the whole construction of this, moreover the vertices needs to be added in clockwise or counter clockwise order, otherwise the face has the wrong normals direction. Really helpful are the settings in the third picture, "Wireframe" and "Face Orientation" so you directly see wrong normals as red face, and see the edges without always switching to wireframe or edit mode. Really must have settings for developers! But beside that you need a lot of tricks and experience with the normal UI usage without Python to get the desired result of such more complex constructions. Here the AI is of big help, although you often need to find out a solution with usual search engines and then the AI tells you that this is "of course" the better way... (why the heck couldn't it recommend that solution if it is "of course" better??.. hahaha...).