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.
15 lines
447 B
15 lines
447 B
from cqmore import Workplane
|
|
from cqmore.curve import archimedeanSpiral, circle
|
|
from cqmore.polygon import regularPolygon, star
|
|
from random import randint, choice
|
|
import cadquery as cq
|
|
import functools as fnc
|
|
import itertools as it
|
|
from cad_utilities.shapes import makeTriangle
|
|
|
|
|
|
cone = cq.Solid.makeCone(8 / 2, 1, 28)
|
|
|
|
result = Workplane().circle(8.3 / 2).extrude(30).cut(cone)
|
|
|
|
cq.exporters.export(result, "/home/deck/model_files/oil_cap.step")
|
|
|