OpenSCAD 3D models for use with PD Buddy devices
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

truncated_teardrop.scad 248B

1234567891011
  1. include <MCAD/teardrop.scad>;
  2. module truncated_teardrop(radius, length) {
  3. translate([length/2, 0, 0])
  4. intersection() {
  5. teardrop(radius, length, angle=90);
  6. translate([-length/2, -radius, -radius])
  7. cube([length, 2*radius, 2*radius]);
  8. }
  9. }