| 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 |
|---|---|---|
| cqterrain | cults3d | |
| printables | ||
| thingiverse | ||
| Maker World | ||
| Maker Online |
| Code | STL | Printed |
|---|---|---|
| dollhouse | Cults3d | |
| 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 | |
| import math | |
| # Making an obelisk in cadquery and cq-editor | |
| def pillar( | |
| points=[(0,0),(0,12.5),(2,12.5) ,(4,4), (4,0)], | |
| extrude=10, | |
| faces=4, | |
| intersect=True |
| Code | App | STL | Printed |
|---|---|---|---|
| App Code | Obelisk App | cults3d | Etsy Obelisk Set |
| cqterrain | 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 | |
| import math | |
| import random | |
| def custom_item(length, width, height): | |
| log('custom item') | |
| return ( | |
| cq.Workplane("XY") | |
| .box(length-1, width-1, height) | |
| .chamfer(0.5) |
Drawing inspiration from this blog post An Algorithm for Irregular Grids I added an irregular grid implementation to cadqueryhelper.
Before delving further check out the blog post!
https://www.gorillasun.de/blog/an-algorithm-for-irregular-grids/
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 random | |
| import cadquery as cq | |
| from cadqueryhelper import irregular_grid | |
| from cqindustry import Walkway | |
| from cqterrain import tile as terrain_tile | |
| #ig = irregular_grid( | |
| # height=3, | |
| # union_grid=False, | |
| # max_height=10 |
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 | |
| def jersey_shape( | |
| width = 10, | |
| height = 10, | |
| base_height = 2, | |
| middle_width_inset = -2, | |
| middle_height = 2, | |
| top_width_inset = -1 | |
| ): |
