transform_component
Adjust the position, rotation, or scale of a 3D component in Sketchup using the MCP server to enable precise model transformations and scene manipulation.
Instructions
Transform a component's position, rotation, or scale
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
position | No | ||
rotation | No | ||
scale | No |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"title": "Id",
"type": "string"
},
"position": {
"default": null,
"items": {
"type": "number"
},
"title": "Position",
"type": "array"
},
"rotation": {
"default": null,
"items": {
"type": "number"
},
"title": "Rotation",
"type": "array"
},
"scale": {
"default": null,
"items": {
"type": "number"
},
"title": "Scale",
"type": "array"
}
},
"required": [
"id"
],
"title": "transform_componentArguments",
"type": "object"
}