Updated Examples

This commit is contained in:
gumyr 2024-02-29 11:34:40 -05:00
parent 78a73a9963
commit f43dac38e2
56 changed files with 677 additions and 574 deletions

View file

@ -24,6 +24,7 @@ license:
See the License for the specific language governing permissions and
limitations under the License.
"""
# [Imports]
from build123d import *
from ocp_vscode import *
@ -95,7 +96,7 @@ with BuildSketch() as build:
with Locations((logo_width / 2, -6)):
add(cust_text.sketch)
cmpd = Compound.make_compound(
cmpd = Compound(
[three_d.part, two.sketch, one.line, build.sketch, extension_lines.line]
)
@ -112,4 +113,4 @@ show_object(cmpd, name="compound")
# show_object(extension_lines.line.wrapped, name="extension_lines")
# show_object(build.sketch.wrapped, name="build")
# [End]
# [End]