create_mortise_tenon
Generate precise mortise and tenon joints in Sketchup using predefined parameters for width, height, depth, and offsets, enabling accurate woodworking designs and structural connections.
Instructions
Create a mortise and tenon joint between two components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
height | No | ||
mortise_id | Yes | ||
offset_x | No | ||
offset_y | No | ||
offset_z | No | ||
tenon_id | Yes | ||
width | No |
Input Schema (JSON Schema)
{
"properties": {
"depth": {
"default": 1,
"title": "Depth",
"type": "number"
},
"height": {
"default": 1,
"title": "Height",
"type": "number"
},
"mortise_id": {
"title": "Mortise Id",
"type": "string"
},
"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"
},
"tenon_id": {
"title": "Tenon Id",
"type": "string"
},
"width": {
"default": 1,
"title": "Width",
"type": "number"
}
},
"required": [
"mortise_id",
"tenon_id"
],
"title": "create_mortise_tenonArguments",
"type": "object"
}