TIER 3 · ASSEMBLIES·t3_03

A T-shaped cross-section bracket: a 80mm-wide horizontal top bar and a 40mm-tall vertical stem, all 6mm thick and 20mm deep (into the page).

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

# Define dimensions
top_bar_width = 80.0
stem_height = 40.0
thickness = 6.0
depth = 20.0

# Calculate half dimensions for easier sketching
half_top_bar_width = top_bar_width / 2.0
half_thickness = thickness / 2.0

# Create the T-shaped profile
result = (
    cq.Workplane("XY")
    .moveTo(-half_top_bar_width, 0)
    .lineTo(half_top_bar_width, 0)
    .lineTo(half_top_bar_width, -thickness)
    .lineTo(half_thickness, -thickness)
    .lineTo(half_thickness, -(thickness + stem_height))
    .lineTo(-half_thickness, -(thickness + stem_height))
    .lineTo(-half_thickness, -thickness)
    .lineTo(-half_top_bar_width, -thickness)
    .close()
    .extrude(depth)
)
COMPARE · SAME PROMPT
Claude Opus 4.6
Zoo ML-ephant
GPT-5
no output
Text2CadQuery (Qwen 3B)