createFaces
Generate multiple 3D faces by defining material IDs, mesh IDs, vertex IDs, and normals. Streamline 3D modeling tasks through a standardized API on the 3D-MCP server.
Instructions
Create multiple Faces
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Array of Faces to create |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Array of Faces to create",
"items": {
"additionalProperties": false,
"properties": {
"materialId": {
"description": "Material ID for this specific face",
"type": "string"
},
"meshId": {
"description": "ID of the parent mesh",
"type": "string"
},
"metadata": {
"additionalProperties": {},
"description": "Additional tool-specific metadata",
"type": "object"
},
"name": {
"description": "Display name",
"type": "string"
},
"normal": {
"description": "Face normal [nx, ny, nz]",
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"selected": {
"default": false,
"description": "Selection state of the face",
"type": "boolean"
},
"smoothingGroup": {
"description": "Smoothing group identifier",
"minimum": 0,
"type": "integer"
},
"vertexIds": {
"description": "IDs of vertices defining the face",
"items": {
"type": "string"
},
"minItems": 3,
"type": "array"
}
},
"required": [
"name",
"meshId",
"vertexIds"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}