Sword

Sword

thingiverse

Here is a sleek and modern sword design created using OpenSCAD software. This script uses parametric modeling to define the shape of the hilt and blade. The user can adjust various parameters such as length, width, and thickness to create different variations of the sword. ```scad module hilt(width, height, depth) { translate([0, 0, -depth/2]) cube([width, height, depth], center=true); } module blade(length, width, thickness) { translate([length/2, 0, 0]) rotate([0, 90, 0]) linear_extrude(thickness) polygon([ [-width/2, -thickness/2], [width/2, -thickness/2], [width/2, thickness/2], [-width/2, thickness/2] ]); } screw_radius = 3; hilt_width = 40; hilt_height = 10; hilt_depth = 5; blade_length = 100; blade_width = 15; blade_thickness = 0.5; union() { hilt(hilt_width, hilt_height, hilt_depth); translate([0, -25, 0]) rotate([180, 90, 0]) blade(blade_length, blade_width, blade_thickness); } // Print the screw holes translate([hilt_width/2 + 3.5, 0, -screw_radius/2]) cylinder(screw_radius, center=true); translate([-hilt_width/2 + 3.5, 0, -screw_radius/2]) cylinder(screw_radius, center=true); ``` This script will create a basic sword design with a hilt and blade. The user can adjust the parameters to create different variations of the sword.

Download Model from thingiverse

With this file you will be able to print Sword with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Sword.