← mecheval / run / a3-spherical-dome-block-01 / claude-mcp-claude-opus-4-7 / 20260611T220542Z-e80f

run 20260611T220542Z-e80f

a3-spherical-dome-block-01 · claude-mcp-claude-opus-4-7

Summary

statusPASS
score1.00 (4/4)
submissionself-run
modelclaude-mcp-claude-opus-4-7 (anthropic)
started2026-06-11T22:05:42.720Z
ended2026-06-11T22:07:36.819Z
tokens648,429 in · 5,706 out · 654,135 total
wallclock114.2s
tool calls40
task hashc684f817f90fd823…
vcad hasheb6d51143893d624…

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
pass
params + details
params: {
  "type": "valid_solid"
}

details: {
  "root_count": 1,
  "solids_produced": 1
}
1
bbox
pass
params + details
params: {
  "type": "bbox",
  "min": [
    -20,
    -20,
    0
  ],
  "max": [
    20,
    20,
    55
  ],
  "tolerance_mm": 0.2
}

details: {
  "actual_max": [
    20,
    20,
    55
  ],
  "actual_min": [
    -20,
    -20,
    0
  ],
  "deviation_max": [
    0,
    0,
    0
  ],
  "deviation_min": [
    0,
    0,
    0
  ],
  "max_abs_deviation_mm": 0,
  "tolerance_mm": 0.2
}
2
mass_props
pass
params + details
params: {
  "type": "mass_props",
  "volume_mm3": 71068.58,
  "tolerance_pct": 2
}

details: {
  "volume": {
    "actual_mm3": 71049.89608076138,
    "deviation_pct": 0.026289985305215178,
    "pass": true,
    "spec_mm3": 71068.58,
    "tolerance_pct": 2
  }
}
3
step_roundtrip
pass
params + details
params: {
  "type": "step_roundtrip",
  "tolerance_pct": 2
}

details: {
  "per_solid": [
    {
      "bbox": {
        "max_abs_deviation_mm": 0,
        "original_max": [
          20,
          20,
          55
        ],
        "original_min": [
          -20,
          -20,
          0
        ],
        "pass": true,
        "roundtripped_max": [
          20,
          20,
          55
        ],
        "roundtripped_min": [
          -20,
          -20,
          0
        ],
        "tolerance_mm": 1.57797338380595
      },
      "index": 0,
      "pass": true,
      "volume": {
        "deviation_pct": 0.08510563333745295,
        "original_mm3": 71049.9001256608,
        "pass": true,
        "roundtripped_mm3": 70989.43265817323
      }
    }
  ],
  "tolerance_pct": 2
}

Tool calls

0
open_document
ok
2ms
args
{}
1
create
err
6ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "union",
  "name": "Cube + Dome",
  "params": {
    "a": {
      "type": "translate",
      "params": {
        "x": -20,
        "y": -20,
        "z": 0,
        "child": {
          "type": "cube",
          "params": {
            "x": 40,
            "y": 40,
            "z": 40
          }
        }
      }
    },
    "b": {
      "type": "intersection",
      "params": {
        "a": {
          "type": "sphere",
          "params": {
            "r": 15
          }
        },
        "b": {
          "type": "translate",
          "params": {
            "x": -100,
            "y": -100,
            "z": 40,
            "child": {
              "type": "cube",
              "params": {
                "x": 200,
                "y": 200,
                "z": 200
              }
            }
          }
        }
      }
    }
  }
}
2
create
err
4ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "union",
  "name": "Cube + Dome",
  "params": {
    "left": {
      "type": "translate",
      "params": {
        "x": -20,
        "y": -20,
        "z": 0,
        "child": {
          "type": "cube",
          "params": {
            "x": 40,
            "y": 40,
            "z": 40
          }
        }
      }
    },
    "right": {
      "type": "intersection",
      "params": {
        "left": {
          "type": "sphere",
          "params": {
            "r": 15
          }
        },
        "right": {
          "type": "translate",
          "params": {
            "x": -100,
            "y": -100,
            "z": 40,
            "child": {
              "type": "cube",
              "params": {
                "x": 200,
                "y": 200,
                "z": 200
              }
            }
          }
        }
      }
    }
  }
}
3
create_cad_loon
ok
13ms
args
{
  "source": "[let\n  cube-part [translate -20 -20 0 [cube 40 40 40]]\n  dome [intersection [translate -100 -100 40 [cube 200 200 200]] [sphere 15]]\n  [root [union dome cube-part] \"steel\"]]",
  "format": "json"
}
4
create_cad_loon
ok
5ms
args
{
  "source": "[root\n  [union\n    [translate -20 -20 0 [cube 40 40 40]]\n    [intersection\n      [translate -100 -100 40 [cube 200 200 200]]\n      [sphere 15]]]\n  \"steel\"]",
  "format": "json"
}
5
create
ok
6ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "cube",
  "name": "Cube",
  "params": {
    "size": {
      "x": 40,
      "y": 40,
      "z": 40
    }
  }
}
6
create
err
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "sphere",
  "name": "Sphere",
  "params": {
    "radius": 15
  }
}
7
create
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "cube",
  "name": "Halfspace",
  "params": {
    "size": {
      "x": 200,
      "y": 200,
      "z": 200
    }
  }
}
8
create
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "sphere",
  "name": "Sphere",
  "params": {
    "radius": 15,
    "segments": 0
  }
}
9
delete
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "1"
}
10
delete
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "2"
}
11
delete
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "3"
}
12
create
ok
4ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "cube",
  "name": "CubeBox",
  "params": {
    "size": {
      "x": 40,
      "y": 40,
      "z": 40
    }
  }
}
13
create
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "translate",
  "name": "CubeMoved",
  "parent_part_id": "1",
  "params": {
    "child": 1,
    "offset": {
      "x": -20,
      "y": -20,
      "z": 0
    }
  }
}
14
create
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "sphere",
  "name": "Sphere",
  "params": {
    "radius": 15,
    "segments": 0
  }
}
15
create
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "cube",
  "name": "HalfBox",
  "params": {
    "size": {
      "x": 200,
      "y": 200,
      "z": 200
    }
  }
}
16
create
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "translate",
  "name": "HalfBoxMoved",
  "parent_part_id": "4",
  "params": {
    "child": 4,
    "offset": {
      "x": -100,
      "y": -100,
      "z": 40
    }
  }
}
17
create
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "intersection",
  "name": "Dome",
  "parent_part_id": "3",
  "params": {
    "left": 3,
    "right": 5
  }
}
18
read
ok
3ms
args
{
  "document_id": "doc_1781215542951_1"
}
19
get_document
ok
2ms
args
{
  "document_id": "doc_1781215542951_1"
}
20
delete
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "1"
}
21
delete
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "3"
}
22
delete
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "4"
}
23
delete
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "5"
}
24
get_document
ok
1ms
args
{
  "document_id": "doc_1781215542951_1"
}
25
create
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "union",
  "name": "CubeDome",
  "parent_part_id": "2",
  "params": {
    "left": 2,
    "right": 6
  }
}
26
get_document
ok
1ms
args
{
  "document_id": "doc_1781215542951_1"
}
27
delete
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "2"
}
28
delete
ok
1ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "6"
}
29
get_document
ok
2ms
args
{
  "document_id": "doc_1781215542951_1"
}
30
render_view
ok
152ms
args
{
  "document_id": "doc_1781215542951_1"
}
31
update
ok
3ms
args
{
  "document_id": "doc_1781215542951_1",
  "node_id": "3",
  "params": {
    "segments": 64
  }
}
32
render_view
ok
91ms
args
{
  "document_id": "doc_1781215542951_1"
}
33
update
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "node_id": "6",
  "params": {
    "left": 8,
    "right": 5
  }
}
34
create
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "type": "translate",
  "name": "SphereMoved",
  "parent_part_id": "3",
  "params": {
    "child": 3,
    "offset": {
      "x": 0,
      "y": 0,
      "z": 40
    }
  }
}
35
get_document
ok
1ms
args
{
  "document_id": "doc_1781215542951_1"
}
36
delete
ok
2ms
args
{
  "document_id": "doc_1781215542951_1",
  "part_id": "8"
}
37
get_document
ok
2ms
args
{
  "document_id": "doc_1781215542951_1"
}
38
render_view
ok
122ms
args
{
  "document_id": "doc_1781215542951_1"
}
39
get_document
ok
1ms
args
{
  "document_id": "doc_1781215542951_1"
}

What the model built

isometric render via vcad-render · the model's actual .vcad output, faceted at 28 segments per cylinder · download 20260611T220542Z-e80f.vcad

.vcad source

{
  "version": "0.1",
  "nodes": {
    "1": {
      "id": 1,
      "name": "CubeBox",
      "op": {
        "type": "Cube",
        "size": {
          "x": 40,
          "y": 40,
          "z": 40
        }
      }
    },
    "2": {
      "id": 2,
      "name": "CubeMoved",
      "op": {
        "type": "Translate",
        "child": 1,
        "offset": {
          "x": -20,
          "y": -20,
          "z": 0
        }
      }
    },
    "3": {
      "id": 3,
      "name": "Sphere",
      "op": {
        "type": "Sphere",
        "radius": 15,
        "segments": 64
      }
    },
    "4": {
      "id": 4,
      "name": "HalfBox",
      "op": {
        "type": "Cube",
        "size": {
          "x": 200,
          "y": 200,
          "z": 200
        }
      }
    },
    "5": {
      "id": 5,
      "name": "HalfBoxMoved",
      "op": {
        "type": "Translate",
        "child": 4,
        "offset": {
          "x": -100,
          "y": -100,
          "z": 40
        }
      }
    },
    "6": {
      "id": 6,
      "name": "Dome",
      "op": {
        "type": "Intersection",
        "left": 8,
        "right": 5
      }
    },
    "7": {
      "id": 7,
      "name": "CubeDome",
      "op": {
        "type": "Union",
        "left": 2,
        "right": 6
      }
    },
    "8": {
      "id": 8,
      "name": "SphereMoved",
      "op": {
        "type": "Translate",
        "child": 3,
        "offset": {
          "x": 0,
          "y": 0,
          "z": 40
        }
      }
    }
  },
  "materials": {},
  "part_materials": {},
  "roots": [
    {
      "root": 7,
      "material": "default"
    }
  ]
}

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