- 积分
- 30558
- 明经币
- 个
- 注册时间
- 2007-4-24
- 在线时间
- 小时
- 威望
-
- 金钱
- 个
- 贡献
-
- 激情
-
|
本帖最后由 gzxl 于 2025-8-31 21:24 编辑
这倒没试过。
acutBuildList
acdbEntMake
acdbEntMod
这样可以试试下。比如:
int status;
struct resbuf *entlist, result;
ads_point newpt;
entlist = acutBuildList(
RTDXF0, "POLYLINE", // 实体类型
62, 5, // 颜色 (蓝)
6, "dashed",// 线型
66, 1, // 顶点跟随
0);
if (entlist == NULL)
{
acdbFail("无法创建结果缓冲区列表\n");
return;
}
status = acdbEntMake(entlist);
然后 acdbEntMod
|
|