gumyr/build123d

Improve API consistency for solid summation

Closed this issue · 1 comments

These are conceptually the same but only the first works

A = Sphere(1)
A + A # ok
A + A + A # ok
A = Sphere(1).solid()
A + A # ok
A + A + A # does not work
ValueError: Only shapes with the same dimension can be added

Fixed