poker_proposeTransform
Proposes rotation and translation transformations for 3D objects by specifying axis rotations and movement vectors to modify spatial positioning.
Instructions
回転・移動変換を提案します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 変換の一意な名前 | |
| operations | Yes | 変換操作の配列 |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "変換の一意な名前",
"type": "string"
},
"operations": {
"description": "変換操作の配列",
"items": {
"description": "変換操作(rotate_around_x, rotate_around_y, rotate_around_z, translate)",
"properties": {
"rotate_around_x": {
"description": "X軸周りの回転角度(度)",
"type": "number"
},
"rotate_around_y": {
"description": "Y軸周りの回転角度(度)",
"type": "number"
},
"rotate_around_z": {
"description": "Z軸周りの回転角度(度)",
"type": "number"
},
"translate": {
"description": "平行移動ベクトル (x y z形式)",
"type": "string"
}
},
"type": "object"
},
"minItems": 1,
"type": "array"
}
},
"required": [
"name",
"operations"
],
"type": "object"
}