| Code | STL | Printed |
|---|---|---|
| cqgothic | Cults3d | Etsy Single |
| Printables | ||
| Thingiverse | ||
| Maker World | ||
| Maker Online |
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 cqindustry import Base | |
| from cadqueryhelper import series, shape | |
| import math | |
| class Walkway(Base): | |
| def __init__(self): | |
| super().__init__() | |
| self.length = 75 | |
| self.width = 50 |
| Code | STL | Printed |
|---|---|---|
| cqindustry | Cults3d | Etsy Chip Tower Kit |
| Printables | ||
| Thingiverse | ||
| Maker World | ||
| Maker Online |
| Code | STL | Printed |
|---|---|---|
| cqterrain | cults3d | Etsy Walkway Set |
| printables | ||
| thingiverse | ||
| Maker World | ||
| Maker Online |
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 |
|---|---|---|
| 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 | |
| length = 100 | |
| width = 100 | |
| height = 75 | |
| inset = 10 | |
| wedge = ( | |
| cq.Workplane("XY" ) | |
| .wedge(length,height,width,inset,inset,length-inset,width-inset) |
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): | |
| ''' |
Aka Learn CadQuery from Scratch
- Installing CadQuery - Documentation
- Installing CQ-Editor - Documentation
- Making your own python packages - Documentation Helpful but not required
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

