<!-- Bug reports that are not about a specific exception or crash are also welcome, feel free to use the generic issue template instead. --> <!-- This template is just a suggestion, it does not have to be followed exactly. --> ## To Reproduce <!-- If possible, please give a minimal example that triggers the error. --> ``` import cadquery as cq from cadquery.vis import show sketch = (cq.Sketch() .push([(44,0)]) .rect(40, 40) .reset() .push([(82, 0)]) .circle(20) .reset() .hull()) show(sketch) ``` Running the above code will result in the following error: <!-- Screenshots of the model prior to the error are often helpful. --> <img width="1275" height="389" alt="Image" src="https://github.com/user-attachments/assets/98f8bf37-dbd7-4ae3-92d5-0eaf4753a026" /> ## How to fix Applying #1889 pull request will fix the sketch hull failure.