bridge
Generate bridges between two face loops in 3D meshes to connect geometries, with options to smooth surfaces and adjust twist offsets for precise connections.
Instructions
Create bridges between face loops
Input Schema
Name | Required | Description | Default |
---|---|---|---|
items | Yes | Bridge operations |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"items": {
"description": "Bridge operations",
"items": {
"additionalProperties": false,
"properties": {
"faceLoopA": {
"description": "First face loop",
"items": {
"type": "string"
},
"type": "array"
},
"faceLoopB": {
"description": "Second face loop",
"items": {
"type": "string"
},
"type": "array"
},
"meshId": {
"description": "Mesh identifier",
"type": "string"
},
"smooth": {
"default": true,
"description": "Whether to smooth the bridge",
"type": "boolean"
},
"twist": {
"default": 0,
"description": "Twist offset for bridge connections",
"type": "integer"
}
},
"required": [
"meshId",
"faceLoopA",
"faceLoopB"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"items"
],
"type": "object"
}