deleteEdges
Remove specific edges in 3D models by providing their identifiers using this tool. Integrates with 3D-MCP to streamline modifications in digital content creation workflows.
Instructions
Delete multiple Edges
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ids | Yes | Edge identifiers to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ids": {
"description": "Edge identifiers to delete",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"ids"
],
"type": "object"
}