天气与日历 切换到窄版

 找回密码
 立即注册
中国膜结构网
十大进口膜材评选 十大国产膜材评选 十大膜结构设计评选 十大膜结构公司评选
查看: 22|回复: 0

arx用ads_entmake 创建 LWPOLYLINE

[复制链接]
  • TA的每日心情
    开心
    昨天 06:36
  • 签到天数: 15 天

    [LV.4]偶尔看看III

    105

    主题

    11

    回帖

    1308

    积分

    管理员

    积分
    1308
    QQ
    发表于 2024-10-9 08:51:56 | 显示全部楼层 |阅读模式
    1. static int createLwPolyLine(double* pts, int npts, double elevation)
    2.     {
    3.         if (pts == NULL || npts == 0)
    4.             return RTERROR;

    5.         resbuf *pEnt = ads_newrb(0);
    6.         pEnt->resval.rstring = _wcsdup(L"LWPOLYLINE"); //strdup
    7.         resbuf* pTail = pEnt;

    8.         pTail = pTail->rbnext = ads_newrb(100);
    9.         pTail->resval.rstring = _wcsdup(L"AcDbEntity");

    10.         pTail = pTail->rbnext = ads_newrb(100);
    11.         pTail->resval.rstring = _wcsdup(L"AcDbPolyline");

    12.         pTail = pTail->rbnext = ads_newrb(8);
    13.         pTail->resval.rstring = _wcsdup(L"0");

    14.         pTail = pTail->rbnext = ads_newrb(90);
    15.         pTail->resval.rlong = npts;

    16.         pTail = pTail->rbnext = ads_newrb(38);
    17.         pTail->resval.rreal = elevation;

    18.         for (int idx = 1; idx < npts; idx += 2)
    19.         {
    20.             pTail = pTail->rbnext = ads_newrb(10);
    21.             pTail->resval.rpoint[0] = pts[idx - 1];
    22.             pTail->resval.rpoint[1] = pts[idx];
    23.             pTail->resval.rpoint[2] = 0.0;
    24.         }

    25.         pTail->rbnext = NULL;//end

    26.         int res = ads_entmake(pEnt);
    27.         ads_relrb(pEnt);
    28.         return res;
    29.     }

    30.     static void ArxTemplate_doit(void)
    31.     {
    32.         double pnts[4] = { 0.0, 0.0, 0.0, 100.0 };
    33.         createLwPolyLine(pnts, 4, 100);
    34.     }
    复制代码

     

     

     

     

    arx用ads_entmake 创建 LWPOLYLINE
    您需要登录后才可以回帖 登录 | 立即注册

    本版积分规则

    QQ|Archiver|中国膜结构网|中国膜结构协会|进口膜材|国产膜材|ETFE|PVDF|PTFE|设计|施工|安装|车棚|看台|污水池|中国膜结构网_中国空间膜结构协会

    GMT+8, 2024-11-1 10:28 , Processed in 0.158359 second(s), 25 queries .

    Powered by Discuz! X3.5

    © 2001-2024 Discuz! Team.

    快速回复 返回顶部 返回列表