TIER 3 · ASSEMBLIES·t3_02

A hollow rectangular box with outer dimensions 60mm × 50mm × 40mm, wall thickness 3mm on all sides, open on the top face.

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

# Outer dimensions
length = 60.0
width = 50.0
height = 40.0
thickness = 3.0

# Create the solid outer box
box = cq.Workplane("XY").box(length, width, height)

# Apply the shell operation, removing the top face and making it hollow inwards
# The top face is the one in the positive Z direction
result = box.faces(">Z").shell(-thickness)
COMPARE · SAME PROMPT
Claude Opus 4.6
Zoo ML-ephant
GPT-5
Text2CadQuery (Qwen 3B)