You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
577 B
21 lines
577 B
import cadquery as cq
|
|
from cqmore import Workplane
|
|
from cqmore.curve import archimedeanSpiral, circle
|
|
from cqmore.polygon import regularPolygon, star
|
|
from random import randint, choice
|
|
import functools as fnc
|
|
import itertools as it
|
|
|
|
post_width = 3.5
|
|
holder_length = 19
|
|
holder_height = 4
|
|
holder_width = 1
|
|
post_height = 10
|
|
|
|
result = (
|
|
Workplane().box(holder_length, holder_height, holder_width).edges("|Z").fillet(0.9)
|
|
)
|
|
|
|
result = result.workplane(offset=4.5).cylinder(post_height, post_width / 2)
|
|
|
|
cq.exporters.export(result, "/home/deck/model_files/power_holder_new.step")
|
|
|