vibe-openscad

bare/o4-mini / tier-2-offset-handle-mug

success tier 2

bare (o4 mini)

render
bare render of tier-2-offset-handle-mug
loading STL…
success 74.8s · 273/6550t · $0.0291
SCAD (33 lines)
// mug with specified handle on +X side
outer_d = 80;
inner_d = 70;
height = 90;
bottom_thickness = 6;
opening_width = 25;
opening_height = 30;
handle_thickness = 15;
$fn = 100;

union() {
  // mug body
  difference() {
    cylinder(d = outer_d, h = height);
    translate([0, 0, bottom_thickness])
      cylinder(d = inner_d, h = height - bottom_thickness);
  }
  // handle
  translate([0, 0, height/2 - opening_height/2])
    linear_extrude(height = opening_height)
      union() {
        // flat side of D
        translate([outer_d/2 + opening_width, -handle_thickness])
          square([handle_thickness, 2*handle_thickness]);
        // semicircular outer side
        intersection() {
          translate([outer_d/2 + opening_width + handle_thickness, 0])
            circle(r = handle_thickness);
          translate([outer_d/2 + opening_width + handle_thickness/2, 0])
            square([handle_thickness, 2*handle_thickness], center = true);
        }
      }
}
パラメータ (7)
スライダを動かすと openscad-wasm で再レンダリング

meta

runIdbare_o4-mini-1557425a09df-2026-04-28T14-11-12-558Z
matrixIdbare/o4-mini
signature1557425a09dfcee3…
provideropenai
modelo4-mini-2025-04-16
harnessbare
statussuccess
duration74.85s (wallclock: load + prompt eval + generation + network)
tokens273 in / 6550 out
wallclock tok/s87.5 tok/s (end-to-end)
cost$0.0291
createdAt2026-04-28T14:11:12.558Z
gitCommit2d7e9895d68a
openscadOpenSCAD version 2026.04.27

iteration chain

各 iteration step は独立した benchmark run です。parentRunId で前段にリンクします。

prompt

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

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

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

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