probe_material_at
Verify if solid material exists inside a box region of a CAD object by computing its geometric intersection, catching hidden design flaws like missing floors or walls.
Instructions
Check whether solid material actually exists inside an axis-aligned box.
Answers "is there a floor/wall/boss here" directly by computing the real
geometric intersection of the object with a probe box, instead of
inferring it from a screenshot or trusting that a cut/pad did what was
intended. A classic failure this catches: an "open-top enclosure" pocket
cut from the base-plane sketch leaves the box closed on TOP and open on
the BOTTOM (a sketch sits on its plane and cannot leave a floor beneath
itself) — probing the intended floor location returns 0 material there.
Args:
doc_name: The name of the document containing the object.
obj_name: The name of the object to probe.
box_min: [x, y, z] of the probe box's minimum corner.
box_size: [x, y, z] size of the probe box (all must be positive).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| box_min | Yes | ||
| box_size | Yes | ||
| doc_name | Yes | ||
| obj_name | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |