Batch Create Entities
entity_batch_createCreate multiple AutoCAD entities (lines, circles, arcs, polylines, rectangles, text, points) in a single API call to reduce round trips and improve performance.
Instructions
Create multiple entities in a single call for better performance.
Each entity dict must have a 'type' key and the parameters for that type. Example: [{"type": "line", "x1": 0, "y1": 0, "x2": 100, "y2": 0}, {"type": "circle", "cx": 50, "cy": 50, "radius": 25}]
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| entities | Yes | List of entity definitions. Each dict must have 'type' and type-specific params. Types: line, circle, arc, polyline, rectangle, text, point |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||