create_dovetail
Generate precise dovetail joints between two components in Sketchup by configuring angles, depth, width, and tail count for accurate 3D modeling.
Instructions
Create a dovetail joint between two components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
angle | No | ||
depth | No | ||
height | No | ||
num_tails | No | ||
offset_x | No | ||
offset_y | No | ||
offset_z | No | ||
pin_id | Yes | ||
tail_id | Yes | ||
width | No |
Input Schema (JSON Schema)
{
"properties": {
"angle": {
"default": 15,
"title": "Angle",
"type": "number"
},
"depth": {
"default": 1,
"title": "Depth",
"type": "number"
},
"height": {
"default": 1,
"title": "Height",
"type": "number"
},
"num_tails": {
"default": 3,
"title": "Num Tails",
"type": "integer"
},
"offset_x": {
"default": 0,
"title": "Offset X",
"type": "number"
},
"offset_y": {
"default": 0,
"title": "Offset Y",
"type": "number"
},
"offset_z": {
"default": 0,
"title": "Offset Z",
"type": "number"
},
"pin_id": {
"title": "Pin Id",
"type": "string"
},
"tail_id": {
"title": "Tail Id",
"type": "string"
},
"width": {
"default": 1,
"title": "Width",
"type": "number"
}
},
"required": [
"tail_id",
"pin_id"
],
"title": "create_dovetailArguments",
"type": "object"
}