alicam
authorTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 18 Jan 2025 11:17:10 +0000 (12:17 +0100)
committerTomas Mudrunka <tomas.mudrunka@gmail.com>
Sat, 18 Jan 2025 11:17:10 +0000 (12:17 +0100)
openscad/camera_aliexpress.scad [new file with mode: 0644]

diff --git a/openscad/camera_aliexpress.scad b/openscad/camera_aliexpress.scad
new file mode 100644 (file)
index 0000000..6ab4855
--- /dev/null
@@ -0,0 +1,21 @@
+$fn=256;
+
+module camera(zclr=0) {
+       translate([0,0,-zclr/2]) cube([21.5,21.5,18+zclr], center=true);
+       cylinder(d=18, h=9+5+zclr);
+}
+
+module camera_ball() {
+       difference() {
+               intersection() {
+                       sphere(d=45);
+                       translate([0,0,2]) cube([1000,1000,35], center=true);
+               }
+               translate([0,0,6.5]) {
+                       camera(zclr=100);
+               }
+       }
+}
+
+camera_ball();
+//translate([0,0,6.5]) camera();
\ No newline at end of file
This page took 0.189356 seconds and 4 git commands to generate.