Roger Maitland

Results 87 issues of Roger Maitland

The `Sketch.slot()` method produces a slot with the incorrect length (w+h). Here is an illustration of how it doesn't agree with the `Workplane.slot2D()` and the fixed code: ```python from typing...

consistency

While sweeping a spline I discovered strange numerical dependencies as illustrated in this example: ```python from cadquery import Vector, Edge, Wire, Solid arc_width = 701.0 x_offset = 2 * arc_width...

After upgrading Ubuntu to 22.04 LTS, creating a new conda environment, and installing cadquery with `conda install -c conda-forge -c cadquery cadquery=master` and cq-editor with `conda install -c cadquery -c...

# To Reproduce While working on the creation of a thread library I discovered that cq-editor crashes on extrusions with rotation and was able to reproduce the problem with the...

By sub-classing all of the objects created with cq_warehouse the use of `.cq_object` will become unnecessary and result in a more natural user interface. For example: ```py flanged_nut = HexNutWithFlange(size="M6-1",...

enhancement

When using cq_warehouse.bearing one creates an assembly for each bearing instance with auto assigned named objects. If multiple instances of the same bearing is added to another assembly, this operation...

enhancement

File "/home/roger/anaconda3/envs/cq39/lib/python3.9/site-packages/cadquery/occ_impl/geom.py", line 317, in toVertex return Vertex.makeVertex(*self.toTuple()) NameError: name 'Vertex' is not defined

When making holes in non-planar surfaces a single central location may not result in the fastener being fully countersunk. To fix this, the profile of the hole should be projected...

enhancement

'cut' has been deprecated and should be replaced with combine="cut" in calls to text. The extensions text methods should be updated to deprecate 'cut' and use the same `self._combineWithBase(r, combine,...

enhancement