aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hodgden <chrhodgden@gmail.com>2024-12-24 15:33:22 -0600
committerChristian Hodgden <chrhodgden@gmail.com>2024-12-24 15:33:22 -0600
commite2c4b8fcc424571d3a2acafb9df3c4c3cd57f45c (patch)
treed3b5a14e4907f8a6c6819dbd624c8680ce035e73
parenta153e1e41cf53f7a2bcccc55cc0c6281427861f3 (diff)
Added peg model for the wooden triangle peg puzzle.dev
-rw-r--r--ATTRIBUTIONS.md2
-rw-r--r--triangle_pegs/peg.scad6
-rw-r--r--triangle_pegs/peg.stlbin0 -> 48384 bytes
3 files changed, 8 insertions, 0 deletions
diff --git a/ATTRIBUTIONS.md b/ATTRIBUTIONS.md
index 0a6bc84..5ab1bfd 100644
--- a/ATTRIBUTIONS.md
+++ b/ATTRIBUTIONS.md
@@ -18,6 +18,8 @@
[Diamond Candlestick](./candles/diamond.stl) - Created by [Christian Hodgden](https://chrhodgden.github.io) [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
+[Peg](./triangle_pegs/peg.stl) - Created by [Christian Hodgden](https://chrhodgden.github.io) [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/)
+
## Some of these projects are using components from following sources:
[DUMMY 13 Printable Jointed Figure](https://www.printables.com/model/593185-dummy-13-printable-jointed-figure-beta-files) (©) 2023 by [Lucky 13 Toys](https://www.lucky13toys.com) is licensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0/)
diff --git a/triangle_pegs/peg.scad b/triangle_pegs/peg.scad
new file mode 100644
index 0000000..a0c3836
--- /dev/null
+++ b/triangle_pegs/peg.scad
@@ -0,0 +1,6 @@
+$fn=100;
+cylinder(0.25, 0.25, 0);
+cylinder(2, 3/32, 1/16);
+translate([0, 0 , 2]) {
+ cylinder(1/16, 1/16, 0);
+};
diff --git a/triangle_pegs/peg.stl b/triangle_pegs/peg.stl
new file mode 100644
index 0000000..31680a5
--- /dev/null
+++ b/triangle_pegs/peg.stl
Binary files differ