edit_object
Modify object properties in FreeCAD when initial creation fails. Specify document, object name, and desired properties to update the object and receive a success confirmation and screenshot.
Instructions
Edit an object in FreeCAD.
This tool is used when the create_object tool cannot handle the object creation.
Args:
    doc_name: The name of the document to edit the object in.
    obj_name: The name of the object to edit.
    obj_properties: The properties of the object to edit.
Returns:
    A message indicating the success or failure of the object editing and a screenshot of the object.
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| doc_name | Yes | ||
| obj_name | Yes | ||
| obj_properties | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "doc_name": {
      "title": "Doc Name",
      "type": "string"
    },
    "obj_name": {
      "title": "Obj Name",
      "type": "string"
    },
    "obj_properties": {
      "additionalProperties": true,
      "title": "Obj Properties",
      "type": "object"
    }
  },
  "required": [
    "doc_name",
    "obj_name",
    "obj_properties"
  ],
  "title": "edit_objectArguments",
  "type": "object"
}