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 · Zoo ML-ephant
KCL (KITTYCAD LANGUAGE)SOURCE
✓ executed
/*
Generated by Text-to-CAD:
A rectangular plate 50mm × 30mm × 5mm with a single circular hole 8mm in diameter centered on the plate.
*/
@settings(defaultLengthUnit = mm)

// Constants
plateLength = 50
plateWidth = 30
plateThickness = 5
holeDiameter = 8

// Plate with a centered circular hole
plate = startSketchOn(XY)
  |> rectangle(center = [0, 0], width = plateLength, height = plateWidth)
  |> subtract2d(tool = circle(center = [0, 0], diameter = holeDiameter))
  |> extrude(length = plateThickness)
COMPARE · SAME PROMPT
Claude Opus 4.6
Gemini 2.5 Flash
GPT-5
Text2CadQuery (Qwen 3B)