5 changed files with 178 additions and 7 deletions
@ -0,0 +1,54 @@ |
|||
from cadquery import exporters |
|||
from cq_warehouse.extensions import Workplane |
|||
from svg_path import addSvgPath |
|||
from svgpathtools import svg2paths |
|||
import cadquery as cq |
|||
import cqmore |
|||
|
|||
Workplane = cqmore.extend(Workplane) |
|||
Workplane.addSvgPath = addSvgPath |
|||
|
|||
barbie_dim = (30.059, 33.773) |
|||
|
|||
barbie_dim = (barbie_dim[0] - 0.5, barbie_dim[1] - 0.5) |
|||
|
|||
barbie_paths, barbie_attributes = svg2paths("/home/deck/cad_files/svgs/barbie_logo.svg") |
|||
|
|||
cover_logo = Workplane("XZ").workplane(offset=32.1) |
|||
|
|||
cover_logo_2 = Workplane("XZ").workplane(offset=31.1) |
|||
|
|||
cover_logo = ( |
|||
cover_logo.move(0, -18) |
|||
.box(barbie_dim[1], barbie_dim[0], 2.2) |
|||
.rotate((1, 0, 0), (0, 0, 0), 170) |
|||
) |
|||
cover_logo_2 = ( |
|||
cover_logo_2.move(0, -18) |
|||
.box(barbie_dim[1], barbie_dim[0], 1.2) |
|||
.rotate((1, 0, 0), (0, 0, 0), 170) |
|||
) |
|||
|
|||
barbie_logo = ( |
|||
Workplane("XZ") |
|||
.workplane(offset=-32.15) |
|||
.center(-105, -166.5) |
|||
.addSvgPath(barbie_paths[0]) |
|||
.extrude(0.5) |
|||
) |
|||
barbie_logo = barbie_logo.rotate((1, 0, 0), (0, 0, 0), 190).rotate( |
|||
(0, 0, 1), (0, 0, 0), 180 |
|||
) |
|||
|
|||
result = cq.importers.importStep("/home/deck/Downloads/ps5_stand.step") |
|||
|
|||
result = result.cut(cover_logo) |
|||
result = result.union(cover_logo_2) |
|||
result = result.union(barbie_logo) |
|||
|
|||
cq.exporters.export(result, "/home/deck/model_files/barbie_ps5_stand.stl") |
|||
|
|||
try: |
|||
show_object(result) |
|||
except NameError: |
|||
pass |
@ -0,0 +1,32 @@ |
|||
from cadquery import exporters |
|||
from cq_warehouse.extensions import Workplane |
|||
import cadquery as cq |
|||
|
|||
result = Workplane() |
|||
|
|||
length = 34 |
|||
width = 10 |
|||
height = 80 |
|||
|
|||
# l, w, h |
|||
result = result.box(length, width, height) |
|||
|
|||
result = ( |
|||
result.workplane(offset=-10) |
|||
.center(0, 0) |
|||
.box(length / 2, width, height, combine="cut") |
|||
) |
|||
result = ( |
|||
result.workplane(offset=-30) |
|||
.center(10, 0) |
|||
.box(length / 2, width, height, combine="cut") |
|||
) |
|||
result = result.workplane(offset=-height / 2).center(-40, -2.5).box(30, 5, 5) |
|||
result = result.workplane(offset=-height / 2 + 5).center(-12.5, 0).box(5, 5, 8.5) |
|||
|
|||
cq.exporters.export(result, "/home/deck/model_files/brush_holder.stl") |
|||
|
|||
try: |
|||
show_object(result) |
|||
except NameError: |
|||
pass |
@ -0,0 +1,33 @@ |
|||
from cadquery import exporters |
|||
from cq_warehouse.extensions import Workplane |
|||
from cq_warehouse.fastener import * |
|||
from cq_warehouse.thread import * |
|||
from cqmore.polygon import regularPolygon, star |
|||
import cadquery as cq |
|||
import cqmore |
|||
|
|||
Workplane = cqmore.extend(Workplane) |
|||
|
|||
simple = False |
|||
|
|||
bottom_radius = 70 |
|||
|
|||
screw = ButtonHeadScrew( |
|||
size="M8-1.25", fastener_type="iso7380_1", length=15 * MM, simple=simple |
|||
) |
|||
|
|||
scaled_screw = screw.scale(0.77) |
|||
|
|||
screw_result = ( |
|||
Workplane() |
|||
.makePolygon(star(outerRadius=bottom_radius / 4.5, innerRadius=13, n=8)) |
|||
.extrude(8) |
|||
.union(scaled_screw) |
|||
) |
|||
|
|||
try: |
|||
show_object(screw_result) |
|||
except NameError: |
|||
pass |
|||
|
|||
cq.exporters.export(screw_result, "/home/deck/model_files/drain_catcher_screw.stl") |
@ -0,0 +1,39 @@ |
|||
from cadquery import exporters |
|||
from cq_warehouse.extensions import Workplane |
|||
from cq_warehouse.fastener import * |
|||
from cq_warehouse.thread import * |
|||
from cqmore.curve import archimedeanSpiral, circle |
|||
from cqmore.polygon import regularPolygon, star |
|||
from cqmore.polyhedron import polarZonohedra, Polyhedron, superellipsoid |
|||
from svg_path import addSvgPath |
|||
from svgpathtools import svg2paths |
|||
import cadquery as cq |
|||
import cqmore |
|||
from math import ceil, floor |
|||
|
|||
ticket_width = 40 |
|||
ticket_height = 95 |
|||
|
|||
Workplane = cqmore.extend(Workplane) |
|||
Workplane.addSvgPath = addSvgPath |
|||
|
|||
result = Workplane() |
|||
|
|||
result = result.box(ticket_width + 5, ticket_height + 5, 30) |
|||
result = ( |
|||
result.workplane(offset=11) |
|||
.move(0, 0) |
|||
.box(ticket_width - 2, ticket_height, 50, combine="cut") |
|||
) |
|||
result = ( |
|||
result.workplane(offset=(ticket_width / 2.0) - 5) |
|||
.move(0, 1) |
|||
.box(ticket_width, ticket_height + 5, 1.5, combine="cut") |
|||
) |
|||
|
|||
cq.exporters.export(result, "/home/deck/model_files/ghibli_ticket_holder.stl") |
|||
|
|||
try: |
|||
show_object(result) |
|||
except NameError: |
|||
pass |
Loading…
Reference in new issue