TIER 2 · MULTI-FEATURE PARTS·t2_01

A rectangular plate 50mm × 30mm × 5mm with a single circular hole 8mm in diameter centered on the plate.

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

# Create the rectangular plate
plate_length = 50
plate_width = 30
plate_height = 5
result = cq.Workplane("XY").box(plate_length, plate_width, plate_height)

# Add a centered circular hole
hole_diameter = 8
result = result.faces(">Z").workplane().hole(hole_diameter)
COMPARE · SAME PROMPT
Claude Opus 4.6
Zoo ML-ephant
GPT-5
Text2CadQuery (Qwen 3B)