exit_sketch
Exit sketch editing mode to return to the 3D modeling environment, enabling creation of 3D features like extrusions and revolves.
Instructions
Exit sketch editing mode.
Exits the current sketch editing mode and returns to the 3D modeling environment. This is required after completing sketch geometry before creating 3D features like extrusions, revolves, or sweeps.
Returns: dict[str, Any]: A dictionary containing the resulting values.
Example: ```python # Complete sketch workflow await create_sketch({"plane": "Top"}) await add_circle({"center_x": 0, "center_y": 0, "radius": 5})
result = await exit_sketch()
if result["status"] == "success":
print("Sketch completed, ready for 3D operations")
# Now ready for extrude, revolve, etc.
```
Note:
- Must be called after sketch geometry creation
- Required before executing 3D modeling operations
- Automatically validates sketch geometry
- Previous sketch remains selectable for feature creationInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||