bevel
Apply bevel operations to edges or vertices of 3D meshes, adjusting parameters like amount, segments, and shape factor for precise modeling control within the 3D-MCP server.
Instructions
Bevel edges or vertices
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Bevel operations |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Bevel operations",
"items": {
"additionalProperties": false,
"properties": {
"amount": {
"description": "Bevel amount",
"exclusiveMinimum": 0,
"type": "number"
},
"edgeIds": {
"description": "Edge IDs to bevel",
"items": {
"type": "string"
},
"type": "array"
},
"meshId": {
"description": "Mesh identifier",
"type": "string"
},
"segments": {
"default": 1,
"description": "Number of bevel segments",
"exclusiveMinimum": 0,
"type": "integer"
},
"shape": {
"default": 0.5,
"description": "Profile shape factor",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"vertexIds": {
"description": "Vertex IDs to bevel",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"meshId",
"amount"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}