delete_object
Remove a specific object from a FreeCAD document by specifying the document and object names. Returns a confirmation message and a screenshot of the deleted object.
Instructions
Delete an object in FreeCAD.
Args:
doc_name: The name of the document to delete the object from.
obj_name: The name of the object to delete.
Returns:
A message indicating the success or failure of the object deletion and a screenshot of the object.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
doc_name | Yes | ||
obj_name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"doc_name": {
"title": "Doc Name",
"type": "string"
},
"obj_name": {
"title": "Obj Name",
"type": "string"
}
},
"required": [
"doc_name",
"obj_name"
],
"title": "delete_objectArguments",
"type": "object"
}