TimStrauven

Results 20 comments of TimStrauven

Hi, I posted Whisper STT overhaul #5563 a while ago, to address also some of the STT issues and moving away from the speechrecognition lib. Code there might help to...

This behavior is linked to: Cannot set Distance constraint to horizontal or vertical for lines [BUG] #459 It should be half solved if the PR on it is accepted: Checks...

If you add the following else statement to "operators/bevel.py" at line 138 after the existing if statement it seems to do what it is supposed to: ```Python # Remove original...

If you also want the lines to be added, this seems to work well and I think it fully covers the initial request: ```Python # Remove original point if not...

Just some extra info on this one, it might be useful: With this image as a reference: ![image](https://github.com/hlorus/CAD_Sketcher/assets/96440176/1c95babf-c85a-41e8-a43d-85c963bddc3c) The Coincident constraint annotated in red is the issue here. A coincident...

Hi hlorus, Since I already found the solution for the other constraint issue i took a look at this one as well. The reason here is in the file "operators/add_geometric_constraints.py",...

Indeed, I assumed it was only happening on horizontal/vertical constraints. I took a further look at it, but could not come up with an idea that solves it immediately for...

My focus got a bit too much into trying to clean up existing duplicates instead of just preventing them. Following your advice I added the following to "class GenericConstraintOp(Operator2d):" in...

Not completely, just found an edge case: If you put a distance on 2 points you should be able to have both a horizontal and vertical distance constraint, this code...

If I update the "exists" function this way I think everything is covered. Let me know if I can create a PR this way. ```Python def exists(self, context, constraint_type=None) ->...