editCurveControlPoints
Modify control points of curves in 3D models using precise positional and weight adjustments. Streamline curve editing for accurate design manipulation.
Instructions
Edit control points of curves
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| items | Yes | Curve control point edits |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Curve control point edits",
"items": {
"additionalProperties": false,
"properties": {
"controlPointIndex": {
"description": "Index of control point to edit",
"minimum": 0,
"type": "integer"
},
"curveId": {
"description": "Curve identifier",
"type": "string"
},
"position": {
"description": "New position [x, y, z]",
"items": {
"type": "number"
},
"maxItems": 3,
"minItems": 3,
"type": "array"
},
"weight": {
"description": "New weight value",
"exclusiveMinimum": 0,
"type": "number"
}
},
"required": [
"curveId",
"controlPointIndex"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}