transform_component
Adjust a component's position, rotation, or scale in Sketchup using the SketchupMCP server. Simplify 3D model manipulation by directly modifying component properties.
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"
}