generate_bezier_path
Creates a Bezier curve path from control points, outputting a list of waypoints with positions and orientations for robot motion planning.
Instructions
生成贝塞尔曲线路径
参数:
- control_points: 控制点列表,格式为[{"x": 0, "y": 0, "z": 0, "rx": 0, "ry": 0, "rz": 0}, ...]
- num_points: 生成的路径点数量
返回:
- 路径点列表Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| control_points | Yes | ||
| num_points | No |