← mecheval / run / a3-spherical-dome-block-01 / claude-direct-claude-haiku-4-5-20251001 / 20260428T232729Z-53aa

run 20260428T232729Z-53aa

a3-spherical-dome-block-01 · claude-direct-claude-haiku-4-5-20251001

Summary

statusfail
score0.00 (0/4)
submissionself-run
modelclaude-direct-claude-haiku-4-5-20251001 (anthropic)
started2026-04-28T23:27:29.522Z
ended2026-04-28T23:27:33.348Z
tokens801 in · 687 out · 1,488 total
wallclock3.8s
tool calls1
task hashc684f817f90fd823…
vcad hashd53002b3a42c8d6b…

Prompt

Make a single solid consisting of a cube with a hemispherical dome fused onto its top face. Cube: 40mm × 40mm × 40mm, centered in X and Y with the bottom face on the XY plane (so it spans x in [-20, 20], y in [-20, 20], z in [0, 40]). Dome: a hemisphere of radius 15mm sitting on top of the cube, centered on the Z axis. The flat (circular) face of the hemisphere is flush with the top face of the cube at z = 40, and the dome extends upward from there. The two parts are joined into a single solid (their shared circular interface is internal, not a face). Note: the kernel only has a full Sphere primitive — to get a hemisphere you must boolean a sphere with a half-space (e.g. intersect a sphere with a large cube positioned at z ≥ 40).

Checks

0
valid_solid
fail
solid invalid
params + details
params: {
  "type": "valid_solid"
}

details: {
  "error": "parse: Invalid JSON vcad file: invalid value: expected key to be a number in quotes at line 4 column 5",
  "reason": "fatal evaluation error"
}
1
bbox
fail
? off by 0.00mm
params + details
params: {
  "type": "bbox",
  "min": [
    -20,
    -20,
    0
  ],
  "max": [
    20,
    20,
    55
  ],
  "tolerance_mm": 0.2
}

details: {
  "reason": "no valid solid to measure"
}
2
mass_props
fail
mass props off
params + details
params: {
  "type": "mass_props",
  "volume_mm3": 71068.58,
  "tolerance_pct": 2
}

details: {
  "reason": "no valid solid to measure"
}
3
step_roundtrip
fail
STEP roundtrip failed
params + details
params: {
  "type": "step_roundtrip",
  "tolerance_pct": 2
}

details: {
  "reason": "no valid solid to round-trip"
}

Tool calls

0
anthropic.messages.create
ok
3819ms
args
{
  "model": "claude-haiku-4-5-20251001",
  "max_tokens": 8000,
  "system_chars": 1674,
  "user_chars": 808
}

What the model built

no render available — vcad-render did not produce geometry for this attempt

.vcad source

{
  "version": "0.1",
  "nodes": {
    "cube_main": {
      "id": "cube_main",
      "name": "Main cube",
      "op": {
        "type": "Cube",
        "size": {"x": 40, "y": 40, "z": 40}
      }
    },
    "cube_main_centered": {
      "id": "cube_main_centered",
      "name": "Centered cube",
      "op": {
        "type": "Translate",
        "child": "cube_main",
        "offset": {"x": -20, "y": -20, "z": 0}
      }
    },
    "sphere_full": {
      "id": "sphere_full",
      "name": "Full sphere",
      "op": {
        "type": "Sphere",
        "radius": 15,
        "segments": 32
      }
    },
    "sphere_positioned": {
      "id": "sphere_positioned",
      "name": "Sphere at top of cube",
      "op": {
        "type": "Translate",
        "child": "sphere_full",
        "offset": {"x": 0, "y": 0, "z": 40}
      }
    },
    "half_space": {
      "id": "half_space",
      "name": "Half-space for hemisphere extraction",
      "op": {
        "type": "Cube",
        "size": {"x": 100, "y": 100, "z": 100}
      }
    },
    "half_space_positioned": {
      "id": "half_space_positioned",
      "name": "Half-space positioned above cube",
      "op": {
        "type": "Translate",
        "child": "half_space",
        "offset": {"x": -50, "y": -50, "z": 40}
      }
    },
    "hemisphere": {
      "id": "hemisphere",
      "name": "Hemisphere (sphere intersected with half-space)",
      "op": {
        "type": "Intersection",
        "left": "sphere_positioned",
        "right": "half_space_positioned"
      }
    },
    "result": {
      "id": "result",
      "name": "Cube with hemispherical dome",
      "op": {
        "type": "Union",
        "left": "cube_main_centered",
        "right": "hemisphere"
      }
    }
  },
  "materials": {},
  "part_materials": {},
  "roots": [
    {
      "root": "result",
      "material": "default"
    }
  ]
}

generated 2026-06-19T01:47:55.939Z · static site, regenerate with npm run build -w @mecheval/leaderboard