Compare commits

...

3 Commits

Author SHA1 Message Date
25c184723d Experimenting with assembling pieces 2023-04-16 22:32:44 -03:00
c9c10d1c4a Add decent 3d viewer extension 2023-04-16 09:38:40 -03:00
52a0e374d0 License 2023-04-16 09:14:51 -03:00
11 changed files with 1263 additions and 1205 deletions

View File

@@ -6,7 +6,8 @@
"recommendations": [ "recommendations": [
"emeraldwalk.RunOnSave", "emeraldwalk.RunOnSave",
"ms-vscode.makefile-tools", "ms-vscode.makefile-tools",
"ms-python.python" "ms-python.python",
"mtsmfm.vscode-stl-viewer"
], ],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace. // List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": [ "unwantedRecommendations": [

9
LICENSE.md Normal file
View File

@@ -0,0 +1,9 @@
MIT License
Copyright (c) 2022 Roberto Alsina <roberto.alsina@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

40
assembly.py Normal file
View File

@@ -0,0 +1,40 @@
import cadquery as cq
import base
import simple_lid
base = base.model()
lid = simple_lid.model()
# kbd =
compu = (
cq.Assembly()
.add(base, name="base", color=cq.Color("red"))
.add(lid, name="lid", color=cq.Color("green"))
)
compu.constrain("base@faces@<X", "lid@faces@<X", "Plane", param=0)
# compu.constrain("base@faces@>Y", "lid@faces@>Y", "Plane", param=0)
# compu.constrain("base@faces@>X", "lid@faces@>X", "Plane", param=0)
compu.constrain("base@faces@>Z", "lid?bottom", "Plane")
# def pk(p):
# c = p.Center()
# return (c.x, c.y, c.z)
# lid_holes = sorted(
# [x for x in lid.faces("|Z").edges("%CIRCLE").vals() if x.radius() == 2 and x.Closed()], key=pk
# )
# base_holes = sorted(
# [x for x in base.faces(">Z").edges("%CIRCLE").vals() if x.radius() == 1.8], key=pk
# )
# print(len(lid_holes), len(base_holes))
# # Holes of diam 2 on the top lid and 1.8 in the base
# for a, b in list(zip(lid_holes, base_holes)):
# compu.constrain("lid", a, "base", b, "Point")
compu.solve(5)
compu.save("compu.step")

View File

@@ -110,6 +110,7 @@ def model():
back_face=None, back_face=None,
shell_t=dim.shell_t, shell_t=dim.shell_t,
) )
model.mounting_holes = [x for x in model.faces(">Z").edges("%CIRCLE").vals() if x.radius()==1.8]
model = keyboard.add( model = keyboard.add(
model=model, model=model,

View File

@@ -12,6 +12,8 @@ def model():
.box(dim.width, dim.sl_height, dim.sl_thickness) .box(dim.width, dim.sl_height, dim.sl_thickness)
.edges("|Z and >Y") .edges("|Z and >Y")
.fillet(2) .fillet(2)
.faces("<Z")
.tag("bottom")
) )
# Make many holes # Make many holes
@@ -46,6 +48,9 @@ def model():
) )
.cskHole(dim.m4_bottom, dim.m4_top, 82, depth=None) .cskHole(dim.m4_bottom, dim.m4_top, 82, depth=None)
) )
model.mounting_holes = [
x for x in model.faces("<Z").edges("%CIRCLE").vals() if x.radius() == 2
]
# Add front lip # Add front lip

Binary file not shown.

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 227 KiB

After

Width:  |  Height:  |  Size: 227 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.