added own OpenScad models
This commit is contained in:
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_181915.jpg
Normal file
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_181915.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_181921.jpg
Normal file
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_181921.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 MiB |
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_195618.jpg
Normal file
BIN
openscad/own/tiled wolverine claws/img/IMG_20141021_195618.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 MiB |
BIN
openscad/own/tiled wolverine claws/img/claws_tiled.png
Normal file
BIN
openscad/own/tiled wolverine claws/img/claws_tiled.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
3026
openscad/own/tiled wolverine claws/stl/Claws_handle_flat.stl
Normal file
3026
openscad/own/tiled wolverine claws/stl/Claws_handle_flat.stl
Normal file
File diff suppressed because it is too large
Load Diff
BIN
openscad/own/tiled wolverine claws/stl/claw.stl
Normal file
BIN
openscad/own/tiled wolverine claws/stl/claw.stl
Normal file
Binary file not shown.
3292
openscad/own/tiled wolverine claws/stl/claw_tiled.stl
Normal file
3292
openscad/own/tiled wolverine claws/stl/claw_tiled.stl
Normal file
File diff suppressed because it is too large
Load Diff
2270
openscad/own/tiled wolverine claws/stl/claw_tiled_b.stl
Normal file
2270
openscad/own/tiled wolverine claws/stl/claw_tiled_b.stl
Normal file
File diff suppressed because it is too large
Load Diff
1024
openscad/own/tiled wolverine claws/stl/claw_tiled_t.stl
Normal file
1024
openscad/own/tiled wolverine claws/stl/claw_tiled_t.stl
Normal file
File diff suppressed because it is too large
Load Diff
72
openscad/own/tiled wolverine claws/tiled_claws.scad
Normal file
72
openscad/own/tiled wolverine claws/tiled_claws.scad
Normal file
@@ -0,0 +1,72 @@
|
||||
// Tiled Wolverine Claws
|
||||
// by zeus - zeus@ctdo.de - CC-BY-NC-4.0
|
||||
// -> https://www.thingiverse.com/zeus
|
||||
// -> https://github.com/zeus86
|
||||
// 2014-12-13
|
||||
//remixed from "Wolverine Claws in plastic" by "chefmaki"
|
||||
//( http://www.thingiverse.com/thing:28270 ).
|
||||
//uncomment claw_t at the end of this document
|
||||
//to draw the top-section of the claw.
|
||||
|
||||
|
||||
|
||||
h=2.8;
|
||||
|
||||
// ============================
|
||||
|
||||
|
||||
module cut_t(){
|
||||
intersection(){
|
||||
import("stl/claw.stl");
|
||||
rotate([0,0,-65]){translate([-15,0,h/2]){#cube([29,8.5,h],center=true);}}
|
||||
rotate([0,0,25]){translate([-0,15,h/2]){#cylinder(r=8.5,h=h,center=true, $fn=3);}}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
module claw_t(){
|
||||
difference(){
|
||||
|
||||
import("stl/claw.stl");
|
||||
|
||||
|
||||
rotate([0,0,-65]){translate([0,-72.5,h/2]){#cube([100,153.5,h+0.1],center=true);}}
|
||||
}
|
||||
cut_t();
|
||||
}
|
||||
|
||||
|
||||
// ============================
|
||||
|
||||
module cut_b(){
|
||||
intersection(){
|
||||
import("stl/claw.stl");
|
||||
difference(){
|
||||
rotate([0,0,-65]){translate([-15,0,h/2]){#cube([29,8.5,h],center=true);}}
|
||||
rotate([0,0,25]){translate([-0,15,h/2]){#cylinder(r=8.5,h=h,center=true, $fn=3);}}
|
||||
}}
|
||||
}
|
||||
|
||||
|
||||
|
||||
module claw_b(){
|
||||
difference(){
|
||||
|
||||
import("stl/claw.stl");
|
||||
|
||||
|
||||
rotate([0,0,-65]){translate([0,72.5,h/2]){#cube([100,153.5,h+0.1],center=true);}}
|
||||
}
|
||||
cut_b();
|
||||
}
|
||||
|
||||
// ============================
|
||||
|
||||
claw_t();
|
||||
|
||||
translate([100,25,0]){
|
||||
claw_b();}
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user