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