vibe-openscad

tier-2-offset-handle-mug / gpt-5.1-codex

5 run / 累計 455.7s / 累計 $0.4333

openai gpt 5.1 codex bare

bare (provider default effort)

run detail →
render
bare render of tier-2-offset-handle-mug
loading STL…
success 152.5s · 273/12625t · $0.1393
SCAD (62 lines)
$fn = 128;

module mug_body() {
    outer_height = 90;
    outer_radius = 40;
    inner_radius = 35;
    bottom_thickness = 6;

    difference() {
        cylinder(h = outer_height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = outer_height - bottom_thickness, r = inner_radius);
    }
}

module mug_handle() {
    handle_wall = 5;
    handle_inner_height = 30;
    handle_inner_width = 25;
    handle_depth = 18;

    inner_radius = handle_inner_height / 2;
    inner_rect_w = handle_inner_width - inner_radius;
    outer_height = handle_inner_height + 2 * handle_wall;
    outer_radius = outer_height / 2;
    outer_rect_w = inner_rect_w + handle_wall;

    module semicircle(radius) {
        intersection() {
            circle(r = radius);
            translate([0, -radius])
                square([radius, 2 * radius], center = false);
        }
    }

    module d_profile(rect_w, height, radius) {
        union() {
            square([rect_w, height], center = false);
            translate([rect_w, height / 2])
                semicircle(radius);
        }
    }

    module handle_2d() {
        difference() {
            d_profile(outer_rect_w, outer_height, outer_radius);
            translate([handle_wall, handle_wall])
                d_profile(inner_rect_w, handle_inner_height, inner_radius);
        }
    }

    translate([38.5, 0, 45])
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                translate([0, -outer_height / 2])
                    handle_2d();
}

union() {
    mug_body();
    mug_handle();
}

prompt

OpenSCAD で、向きが指定されたマグカップを作ってください。

本体:
- 外径 80mm、内径 70mm(肉厚 5mm)、高さ 90mm の円筒形マグ
- 底面の厚みは 6mm
- 内側は飲み物を入れられるよう中空

取手(handle):
- マグの **+X 軸方向の側面のみ** に付ける(他の方向には付けない)
- 取手は D 字形状(外側が半円、本体側が直線)で、本体外周にしっかり接続する
- 取手の内側の空間は高さ 30mm × 幅 25mm(指 3 本ぐらい入る)
- 取手はマグの高さ方向の中央付近に付ける
- 本体と取手は確実に union され、マニフォールド(隙間や宙吊りなし)を保つ

完成したコード全体を ```openscad ... ``` のフェンスで囲んで出力してください。コードのみで、追加の説明は不要です。

variant: effort

lownot run
medium (default) success
medium
152.5s · 273/12625t · $0.1393
SCAD (62 lines)
$fn = 128;

module mug_body() {
    outer_height = 90;
    outer_radius = 40;
    inner_radius = 35;
    bottom_thickness = 6;

    difference() {
        cylinder(h = outer_height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = outer_height - bottom_thickness, r = inner_radius);
    }
}

module mug_handle() {
    handle_wall = 5;
    handle_inner_height = 30;
    handle_inner_width = 25;
    handle_depth = 18;

    inner_radius = handle_inner_height / 2;
    inner_rect_w = handle_inner_width - inner_radius;
    outer_height = handle_inner_height + 2 * handle_wall;
    outer_radius = outer_height / 2;
    outer_rect_w = inner_rect_w + handle_wall;

    module semicircle(radius) {
        intersection() {
            circle(r = radius);
            translate([0, -radius])
                square([radius, 2 * radius], center = false);
        }
    }

    module d_profile(rect_w, height, radius) {
        union() {
            square([rect_w, height], center = false);
            translate([rect_w, height / 2])
                semicircle(radius);
        }
    }

    module handle_2d() {
        difference() {
            d_profile(outer_rect_w, outer_height, outer_radius);
            translate([handle_wall, handle_wall])
                d_profile(inner_rect_w, handle_inner_height, inner_radius);
        }
    }

    translate([38.5, 0, 45])
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                translate([0, -outer_height / 2])
                    handle_2d();
}

union() {
    mug_body();
    mug_handle();
}
highnot run
maxnot run
xhighnot run

iteration: iter-png

i1 success
iter 1
23.8s · 1406/2154t · $0.0257
diff vs bare: +0/-0
  $fn = 128;
  
  module mug_body() {
      outer_height = 90;
      outer_radius = 40;
      inner_radius = 35;
      bottom_thickness = 6;
  
      difference() {
          cylinder(h = outer_height, r = outer_radius);
          translate([0, 0, bottom_thickness])
              cylinder(h = outer_height - bottom_thickness, r = inner_radius);
      }
  }
  
  module mug_handle() {
      handle_wall = 5;
      handle_inner_height = 30;
      handle_inner_width = 25;
      handle_depth = 18;
  
      inner_radius = handle_inner_height / 2;
      inner_rect_w = handle_inner_width - inner_radius;
      outer_height = handle_inner_height + 2 * handle_wall;
      outer_radius = outer_height / 2;
      outer_rect_w = inner_rect_w + handle_wall;
  
      module semicircle(radius) {
          intersection() {
              circle(r = radius);
              translate([0, -radius])
                  square([radius, 2 * radius], center = false);
          }
      }
  
      module d_profile(rect_w, height, radius) {
          union() {
              square([rect_w, height], center = false);
              translate([rect_w, height / 2])
                  semicircle(radius);
          }
      }
  
      module handle_2d() {
          difference() {
              d_profile(outer_rect_w, outer_height, outer_radius);
              translate([handle_wall, handle_wall])
                  d_profile(inner_rect_w, handle_inner_height, inner_radius);
          }
      }
  
      translate([38.5, 0, 45])
          rotate([90, 0, 0])
              linear_extrude(height = handle_depth, center = true, convexity = 10)
                  translate([0, -outer_height / 2])
                      handle_2d();
  }
  
  union() {
      mug_body();
      mug_handle();
  }
SCAD (62 lines)
$fn = 128;

module mug_body() {
    outer_height = 90;
    outer_radius = 40;
    inner_radius = 35;
    bottom_thickness = 6;

    difference() {
        cylinder(h = outer_height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = outer_height - bottom_thickness, r = inner_radius);
    }
}

module mug_handle() {
    handle_wall = 5;
    handle_inner_height = 30;
    handle_inner_width = 25;
    handle_depth = 18;

    inner_radius = handle_inner_height / 2;
    inner_rect_w = handle_inner_width - inner_radius;
    outer_height = handle_inner_height + 2 * handle_wall;
    outer_radius = outer_height / 2;
    outer_rect_w = inner_rect_w + handle_wall;

    module semicircle(radius) {
        intersection() {
            circle(r = radius);
            translate([0, -radius])
                square([radius, 2 * radius], center = false);
        }
    }

    module d_profile(rect_w, height, radius) {
        union() {
            square([rect_w, height], center = false);
            translate([rect_w, height / 2])
                semicircle(radius);
        }
    }

    module handle_2d() {
        difference() {
            d_profile(outer_rect_w, outer_height, outer_radius);
            translate([handle_wall, handle_wall])
                d_profile(inner_rect_w, handle_inner_height, inner_radius);
        }
    }

    translate([38.5, 0, 45])
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                translate([0, -outer_height / 2])
                    handle_2d();
}

union() {
    mug_body();
    mug_handle();
}
i2 success
iter 2
35.4s · 1406/3018t · $0.0352
diff vs i1: +0/-0
  $fn = 128;
  
  module mug_body() {
      outer_height = 90;
      outer_radius = 40;
      inner_radius = 35;
      bottom_thickness = 6;
  
      difference() {
          cylinder(h = outer_height, r = outer_radius);
          translate([0, 0, bottom_thickness])
              cylinder(h = outer_height - bottom_thickness, r = inner_radius);
      }
  }
  
  module mug_handle() {
      handle_wall = 5;
      handle_inner_height = 30;
      handle_inner_width = 25;
      handle_depth = 18;
  
      inner_radius = handle_inner_height / 2;
      inner_rect_w = handle_inner_width - inner_radius;
      outer_height = handle_inner_height + 2 * handle_wall;
      outer_radius = outer_height / 2;
      outer_rect_w = inner_rect_w + handle_wall;
  
      module semicircle(radius) {
          intersection() {
              circle(r = radius);
              translate([0, -radius])
                  square([radius, 2 * radius], center = false);
          }
      }
  
      module d_profile(rect_w, height, radius) {
          union() {
              square([rect_w, height], center = false);
              translate([rect_w, height / 2])
                  semicircle(radius);
          }
      }
  
      module handle_2d() {
          difference() {
              d_profile(outer_rect_w, outer_height, outer_radius);
              translate([handle_wall, handle_wall])
                  d_profile(inner_rect_w, handle_inner_height, inner_radius);
          }
      }
  
      translate([38.5, 0, 45])
          rotate([90, 0, 0])
              linear_extrude(height = handle_depth, center = true, convexity = 10)
                  translate([0, -outer_height / 2])
                      handle_2d();
  }
  
  union() {
      mug_body();
      mug_handle();
  }
SCAD (62 lines)
$fn = 128;

module mug_body() {
    outer_height = 90;
    outer_radius = 40;
    inner_radius = 35;
    bottom_thickness = 6;

    difference() {
        cylinder(h = outer_height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = outer_height - bottom_thickness, r = inner_radius);
    }
}

module mug_handle() {
    handle_wall = 5;
    handle_inner_height = 30;
    handle_inner_width = 25;
    handle_depth = 18;

    inner_radius = handle_inner_height / 2;
    inner_rect_w = handle_inner_width - inner_radius;
    outer_height = handle_inner_height + 2 * handle_wall;
    outer_radius = outer_height / 2;
    outer_rect_w = inner_rect_w + handle_wall;

    module semicircle(radius) {
        intersection() {
            circle(r = radius);
            translate([0, -radius])
                square([radius, 2 * radius], center = false);
        }
    }

    module d_profile(rect_w, height, radius) {
        union() {
            square([rect_w, height], center = false);
            translate([rect_w, height / 2])
                semicircle(radius);
        }
    }

    module handle_2d() {
        difference() {
            d_profile(outer_rect_w, outer_height, outer_radius);
            translate([handle_wall, handle_wall])
                d_profile(inner_rect_w, handle_inner_height, inner_radius);
        }
    }

    translate([38.5, 0, 45])
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                translate([0, -outer_height / 2])
                    handle_2d();
}

union() {
    mug_body();
    mug_handle();
}
i3 success
iter 3
91.5s · 1406/8364t · $0.0940
diff vs i2: +37/-35
  $fn = 128;
  
- module mug_body() {
-     outer_height = 90;
-     outer_radius = 40;
-     inner_radius = 35;
-     bottom_thickness = 6;
+ // Mug body parameters
+ outer_height = 90;
+ outer_radius = 40;
+ inner_radius = 35;
+ bottom_thickness = 6;
  
+ // Handle parameters
+ handle_wall = 5;
+ handle_inner_height = 30;
+ handle_inner_width = 25;
+ handle_depth = 18;
+ 
+ module mug_body() {
      difference() {
          cylinder(h = outer_height, r = outer_radius);
          translate([0, 0, bottom_thickness])
              cylinder(h = outer_height - bottom_thickness, r = inner_radius);
      }
  }
  
- module mug_handle() {
-     handle_wall = 5;
-     handle_inner_height = 30;
-     handle_inner_width = 25;
-     handle_depth = 18;
- 
-     inner_radius = handle_inner_height / 2;
-     inner_rect_w = handle_inner_width - inner_radius;
-     outer_height = handle_inner_height + 2 * handle_wall;
-     outer_radius = outer_height / 2;
-     outer_rect_w = inner_rect_w + handle_wall;
- 
-     module semicircle(radius) {
-         intersection() {
-             circle(r = radius);
-             translate([0, -radius])
-                 square([radius, 2 * radius], center = false);
-         }
+ module semicircle(r) {
+     intersection() {
+         circle(r = r);
+         translate([0, -r]) square([r, 2 * r]);
      }
+ }
  
-     module d_profile(rect_w, height, radius) {
-         union() {
-             square([rect_w, height], center = false);
-             translate([rect_w, height / 2])
-                 semicircle(radius);
-         }
+ module d_profile(rect_w, height, radius) {
+     union() {
+         translate([0, -height / 2])
+             square([rect_w, height]);
+         translate([rect_w, 0])
+             semicircle(radius);
      }
+ }
  
+ module mug_handle() {
+     inner_r = handle_inner_height / 2;
+     outer_h = handle_inner_height + 2 * handle_wall;
+     outer_r = outer_h / 2;
+     inner_rect_w = handle_inner_width - inner_r;
+     outer_total_w = handle_inner_width + 2 * handle_wall;
+     outer_rect_w = outer_total_w - outer_r;
+ 
      module handle_2d() {
          difference() {
-             d_profile(outer_rect_w, outer_height, outer_radius);
-             translate([handle_wall, handle_wall])
-                 d_profile(inner_rect_w, handle_inner_height, inner_radius);
+             d_profile(outer_rect_w, outer_h, outer_r);
+             translate([handle_wall, 0])
+                 d_profile(inner_rect_w, handle_inner_height, inner_r);
          }
      }
  
-     translate([38.5, 0, 45])
+     translate([outer_radius - handle_wall, 0, outer_height / 2])
          rotate([90, 0, 0])
              linear_extrude(height = handle_depth, center = true, convexity = 10)
-                 translate([0, -outer_height / 2])
-                     handle_2d();
+                 handle_2d();
  }
  
  union() {
      mug_body();
      mug_handle();
  }
SCAD (64 lines)
$fn = 128;

// Mug body parameters
outer_height = 90;
outer_radius = 40;
inner_radius = 35;
bottom_thickness = 6;

// Handle parameters
handle_wall = 5;
handle_inner_height = 30;
handle_inner_width = 25;
handle_depth = 18;

module mug_body() {
    difference() {
        cylinder(h = outer_height, r = outer_radius);
        translate([0, 0, bottom_thickness])
            cylinder(h = outer_height - bottom_thickness, r = inner_radius);
    }
}

module semicircle(r) {
    intersection() {
        circle(r = r);
        translate([0, -r]) square([r, 2 * r]);
    }
}

module d_profile(rect_w, height, radius) {
    union() {
        translate([0, -height / 2])
            square([rect_w, height]);
        translate([rect_w, 0])
            semicircle(radius);
    }
}

module mug_handle() {
    inner_r = handle_inner_height / 2;
    outer_h = handle_inner_height + 2 * handle_wall;
    outer_r = outer_h / 2;
    inner_rect_w = handle_inner_width - inner_r;
    outer_total_w = handle_inner_width + 2 * handle_wall;
    outer_rect_w = outer_total_w - outer_r;

    module handle_2d() {
        difference() {
            d_profile(outer_rect_w, outer_h, outer_r);
            translate([handle_wall, 0])
                d_profile(inner_rect_w, handle_inner_height, inner_r);
        }
    }

    translate([outer_radius - handle_wall, 0, outer_height / 2])
        rotate([90, 0, 0])
            linear_extrude(height = handle_depth, center = true, convexity = 10)
                handle_2d();
}

union() {
    mug_body();
    mug_handle();
}