sketch_tutorial_simple_hole
Create a 5mm circular hole sketch on the Top plane. Demonstrates the fundamental sketch-to-feature workflow for through-holes or counterbores.
Instructions
Tutorial: Create a simple circular hole sketch.
Demonstrates complete workflow for creating a basic hole sketch that can be used for through-holes, counterbores, or other circular features. This tutorial shows the fundamental sketch-to-feature process.
Returns: dict[str, Any]: A dictionary containing the resulting values.
Example: ```python # Learn basic sketching workflow result = await sketch_tutorial_simple_hole()
if result["status"] == "success":
print("Tutorial completed successfully!")
print("Steps performed:")
for step in result["steps"]:
print(f" - {step}")
print(f"Next: {result['next_steps']}")
```
Workflow:
1. Creates sketch on Top plane
2. Adds 2.5mm radius circle at origin (5mm diameter hole)
3. Exits sketch editing mode
4. Returns sketch ready for extrusion or cutting operations
Note:
- Demonstrates complete sketch creation workflow
- Creates standard 5mm diameter hole geometry
- Result is ready for negative extrusion to create hole
- Perfect starting point for learning SolidWorks automationInput Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||