Confetti wearApp: before/after renders for the Material 3 Expressive modernisation PR.
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
| from cqgridfinity import * | |
| import cadquery as cq | |
| from ocp_vscode import show_object | |
| FRONT_SURFACE_TAG = "front_surface" | |
| # make a simple box | |
| box = GridfinityBox(3, 4, 21, solid=True, solid_ratio=1.0, holes=True, unsupported_holes=True) | |
| posca_box: cq.Workplane = box.cq_obj |
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
| from cqgridfinity import * | |
| import cadquery as cq | |
| from ocp_vscode import show_object | |
| FRONT_SURFACE_TAG = "front_surface" | |
| # make a simple box | |
| box = GridfinityBox(4, 4, 10.2, solid=True, solid_ratio=1.0, holes=True, unsupported_holes=True) | |
| posca_box: cq.Workplane = box.cq_obj |
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 ocp_vscode import show_object | |
| box_length = 180.0 | |
| box_width = 120.0 | |
| box_height = 60.0 | |
| bottom_thickness = 5.0 | |
| side_wall_thickness = 10.0 # Double the bottom thickness | |
| fillet_size = 5.0 |
OlderNewer