OpenSCAD 3D models for use with PD Buddy devices
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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. }