TIER 3 · ASSEMBLIES·t3_05

A rectangular plate 80mm × 60mm × 8mm with a rectangular pocket milled into the top face: the pocket is 60mm × 40mm × 4mm deep and centered on the plate.

Claude Opus 4.6Zoo ML-ephantGemini 2.5 FlashGPT-5Text2CadQuery (Qwen 3B)
3D RENDER · GPT-5
CADQUERY (PYTHON)SOURCE
✓ executed
import cadquery as cq

result = (
    cq.Workplane("XY")
    .box(80, 60, 8)
    .faces(">Z").workplane()
    .rect(60, 40)
    .cutBlind(-4)
)
COMPARE · SAME PROMPT
Claude Opus 4.6
Zoo ML-ephant
Gemini 2.5 Flash
'Workplane' object has no attribute 'cutExtrude'
Text2CadQuery (Qwen 3B)