vibe-openscad

tier-1-cube-with-hole / gpt-5.4-nano-2026-03-17

7 run / 累計 10.9s / 累計 $0.0015

openai gpt 5.4 nano 2026-03-17 bare

bare (provider default effort)

run detail →
render
bare render of tier-1-cube-with-hole
loading STL…
success 1.6s · 82/45t · $0.0006
SCAD (4 lines)
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=60, d=20, center=true, $fn=100);
}

prompt

OpenSCAD で、50mm 角の立方体の中央に、直径 20mm の貫通穴を z 軸方向に開けたモデルを作成してください。

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

variant: effort

low success
low
1.8s · 82/78t · <$0.0001
SCAD (5 lines)
// 50mm 角の立方体の中央に、直径20mmの貫通穴をz軸方向に開ける
difference() {
    cube([50, 50, 50], center=true);
    cylinder(d=20, h=100, center=true, $fn=100);
}
medium (default) success
medium
1.6s · 82/45t · $0.0006
SCAD (4 lines)
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=60, d=20, center=true, $fn=100);
}
high success
high
1.4s · 82/65t · <$0.0001
SCAD (5 lines)
// 50mm cube with a through hole (diameter 20mm) along Z axis
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=60, d=20, center=true, $fn=100);
}
maxnot run
xhighnot run

iteration: iter-png

i1 success
iter 1
1.6s · 787/47t · <$0.0001
diff vs bare: +1/-1
  difference() {
      cube([50, 50, 50], center=true);
-     cylinder(h=60, d=20, center=true, $fn=100);
+     cylinder(h=50.1, d=20, center=true, $fn=100);
  }
SCAD (4 lines)
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=50.1, d=20, center=true, $fn=100);
}
i2 success
iter 2
1.3s · 789/47t · <$0.0001
diff vs i1: +0/-0
  difference() {
      cube([50, 50, 50], center=true);
      cylinder(h=50.1, d=20, center=true, $fn=100);
  }
SCAD (4 lines)
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=50.1, d=20, center=true, $fn=100);
}
i3 success
iter 3
1.6s · 789/47t · <$0.0001
diff vs i2: +0/-0
  difference() {
      cube([50, 50, 50], center=true);
      cylinder(h=50.1, d=20, center=true, $fn=100);
  }
SCAD (4 lines)
difference() {
    cube([50, 50, 50], center=true);
    cylinder(h=50.1, d=20, center=true, $fn=100);
}