getQuadView
Generate top, front, right, and perspective views of a 3D scene with adjustable camera and shading modes for enhanced visualization in 3D creative workflows.
Instructions
Get top, front, right, and perspective views of the scene.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
auto_adjust_camera | No | Automatically adjust camera to fit the scene | |
name_visibility_predicate | No | Function that takes an object as input and returns a dict with display settings. See example below. | |
shading_mode | No | Shading mode for the viewports | WIREFRAME |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"auto_adjust_camera": {
"default": true,
"description": "Automatically adjust camera to fit the scene",
"type": "boolean"
},
"name_visibility_predicate": {
"description": " Function that takes an object as input and returns a dict with display settings. See example below.",
"type": "string"
},
"shading_mode": {
"default": "WIREFRAME",
"description": "Shading mode for the viewports",
"enum": [
"WIREFRAME",
"RENDERED",
"SOLID",
"MATERIAL"
],
"type": "string"
}
},
"type": "object"
}