TIER 1 · BASIC PRIMITIVES·t1_02

A solid cylinder 10mm in diameter and 30mm tall.

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 solid cylinder 10mm in diameter and 30mm tall.
*/
@settings(defaultLengthUnit = mm)

// Parameters
diameter = 10
height = 30

// Sketch base circle on XY
sketch = startSketchOn(XY)
profile = circle(sketch, center = [0, 0], diameter = diameter)

// Extrude to height
cylinder = extrude(profile, length = height)
COMPARE · SAME PROMPT
Claude Opus 4.6
Gemini 2.5 Flash
GPT-5
Text2CadQuery (Qwen 3B)