- one
- two
- three
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #--------------------------------------------------------- | |
| import cadquery as cq #main cadquery library | |
| from cadqueryhelper import shape, series, grid # The shape library this document is about | |
| box = cq.Workplane("XY").box(10,10,2) | |
| star = shape.star(outer_radius=20, inner_radius=3, points=6, height=3) | |
| st_series = series(shape = box, height_offset=2, size=10) | |
| st_series = st_series.translate((-40,0,0)) |
The goal of this post is to smooth FDM printed terrain.
This isn't the only way to smooth 3d printed parts, but it works well if the part is going to be painted.
- Cup With Water
- FDM 3d printer
- Filament
- Paper Towel
Aka Learn CadQuery from Scratch
- Installing CadQuery - Documentation
- Installing CQ-Editor - Documentation
- Making your own python packages - Documentation Helpful but not required
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cadquery as cq | |
| import math | |
| length = 100 | |
| width = 100 | |
| height = 75 | |
| inset = -10 | |
| def angle(length, height): | |
| ''' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cadquery as cq | |
| length = 100 | |
| width = 100 | |
| height = 75 | |
| inset = 10 | |
| wedge = ( | |
| cq.Workplane("XY" ) | |
| .wedge(length,height,width,inset,inset,length-inset,width-inset) |
| Code | STL | Printed |
|---|---|---|
| cqgothic | Patreon | Etsy Gothic Tower |
| Cults3d |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import cadquery as cq | |
| from cadqueryhelper import wave | |
| def vent( | |
| length = 25, | |
| width = 25, | |
| height = 4, | |
| segment_length = 3, | |
| inner_width = 2, | |
| frame_width = 2, |
| Code | STL | Printed |
|---|---|---|
| cqterrain | cults3d | Etsy Walkway Set |
| printables | ||
| thingiverse | ||
| Maker World | ||
| Maker Online |
| Code | STL | Printed |
|---|---|---|
| cqindustry | Cults3d | Etsy Chip Tower Kit |
| Printables | ||
| Thingiverse | ||
| Maker World | ||
| Maker Online |


