jenncad 1.0.0.pre.alpha13 → 1.0.0.pre.alpha16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/jenncad/commands.rb +6 -6
- data/lib/jenncad/default_profile.rb +12 -0
- data/lib/jenncad/exporters/openscad.rb +19 -11
- data/lib/jenncad/extras/din912.rb +1 -1
- data/lib/jenncad/extras/din933.rb +1 -1
- data/lib/jenncad/extras/iso7380.rb +1 -1
- data/lib/jenncad/features/aggregation.rb +1 -0
- data/lib/jenncad/features/climb.rb +5 -3
- data/lib/jenncad/features/cuttable.rb +2 -2
- data/lib/jenncad/features/multiples_of.rb +14 -0
- data/lib/jenncad/features/path.rb +27 -20
- data/lib/jenncad/features.rb +2 -0
- data/lib/jenncad/part.rb +46 -1
- data/lib/jenncad/patches/array.rb +1 -1
- data/lib/jenncad/primitives/boolean_object.rb +10 -5
- data/lib/jenncad/primitives/cube.rb +12 -0
- data/lib/jenncad/primitives/cylinder.rb +49 -9
- data/lib/jenncad/primitives/linear_extrude.rb +1 -1
- data/lib/jenncad/primitives/polygon.rb +4 -2
- data/lib/jenncad/primitives/polyhedron.rb +35 -0
- data/lib/jenncad/primitives/primitive.rb +5 -5
- data/lib/jenncad/primitives/rounded_cube.rb +6 -4
- data/lib/jenncad/primitives/slot.rb +74 -11
- data/lib/jenncad/primitives/subtract_object.rb +23 -10
- data/lib/jenncad/primitives.rb +1 -0
- data/lib/jenncad/shortcuts.rb +12 -3
- data/lib/jenncad/thing.rb +194 -26
- data/lib/jenncad/transformation/color.rb +1 -1
- data/lib/jenncad/version.rb +1 -1
- data/lib/jenncad.rb +1 -1
- data/todo.txt +6 -10
- metadata +4 -2
data/todo.txt
CHANGED
@@ -11,16 +11,6 @@
|
|
11
11
|
Features wanted
|
12
12
|
===================
|
13
13
|
28.4.22:
|
14
|
-
- Parts often come with 4 holes around a center, and I often do something like:
|
15
|
-
|
16
|
-
[-1, 1].each do |i|
|
17
|
-
[-1, 1].each do |j|
|
18
|
-
res += @bolt.cut.move(x: @hole_center*i, y: @hole_center*j)
|
19
|
-
end
|
20
|
-
end
|
21
|
-
|
22
|
-
there should be a shorter way to do this.
|
23
|
-
|
24
14
|
|
25
15
|
- instead of moving Bolts output, make it the default to make their positions an anchor
|
26
16
|
|
@@ -34,6 +24,12 @@ there should be a shorter way to do this.
|
|
34
24
|
- but also, when you have a part that can be mounted in any top/bottom direction, you always end up having the bolts facing the wrong direction..
|
35
25
|
- Bolts should be able to also make thread inserts
|
36
26
|
|
27
|
+
8.5.22:
|
28
|
+
- need an easy way to switch between faces on an object to work efficiently in a 2.5D way
|
29
|
+
i.e. I worked on a part stacking a few things, added a cube along and now wanted to use inner_anchors for the y face for screws. it was easier to make anchors manually for the prototype
|
30
|
+
|
31
|
+
|
32
|
+
|
37
33
|
|
38
34
|
|
39
35
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jenncad
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.pre.
|
4
|
+
version: 1.0.0.pre.alpha16
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jennifer Glauche
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-05-
|
11
|
+
date: 2022-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: geo3d
|
@@ -122,6 +122,7 @@ files:
|
|
122
122
|
- lib/jenncad/features/climb.rb
|
123
123
|
- lib/jenncad/features/cuttable.rb
|
124
124
|
- lib/jenncad/features/feature.rb
|
125
|
+
- lib/jenncad/features/multiples_of.rb
|
125
126
|
- lib/jenncad/features/openscad_include.rb
|
126
127
|
- lib/jenncad/features/path.rb
|
127
128
|
- lib/jenncad/features/stl_import.rb
|
@@ -136,6 +137,7 @@ files:
|
|
136
137
|
- lib/jenncad/primitives/intersection_object.rb
|
137
138
|
- lib/jenncad/primitives/linear_extrude.rb
|
138
139
|
- lib/jenncad/primitives/polygon.rb
|
140
|
+
- lib/jenncad/primitives/polyhedron.rb
|
139
141
|
- lib/jenncad/primitives/primitive.rb
|
140
142
|
- lib/jenncad/primitives/projection.rb
|
141
143
|
- lib/jenncad/primitives/rotate_extrude.rb
|