entity:make-polyline

说明:生成三维多段线.POLYLINE
参数:
pts:端点坐标点表,如:((x1 y1 z1) (x2 y2 z2) (x2 y2 z2))
closed:是否闭合,1:闭合,0:不闭合

用法:
 (entity:make-polyline pts closed)

参数:1 pts : 多个坐标点列表;2 closed : 未识别定义;

返回值:生成多段线的图元名

示例:
(entity:make-pline '((0 0 0) (5000 0 0) (5000 5000 0) (0 5000 0)) 1)