天气与日历 切换到窄版

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

ObjectARX如何利用resbuf在当前数据库插入一个新实体

[复制链接]

该用户从未签到

主题

0

回帖

2912

积分

管理员

积分
2912
发表于 2024-6-22 09:46:18 | 显示全部楼层 |阅读模式
今天翻看arx帮助文档,偶然看到以下接口:

struct resbuf * acdbEntGet( const ads_name ent );
该接口可以从图形数据库获取指定实体,并将其定义数据以链表形式返回。这个函数也可用于检查字典。
(Retrieves the specified entity from the drawing database and returns its definition data as a linked list of result buffers. This function is used also to examine dictionaries.)

然后,我就在想,是否有一个接口,能够根据实体定义数据创建一个实体呢?确实是有:

int acdbEntMake( const struct resbuf * ent );
该接口将链表描述的实体(或者可以是一个空的字典)添加到图形数据库当中。参数ent是一个结果缓冲区链表,它的格式同acdbEntGet接口返回的链表一致。
(Makes a new entity, which can be an empty dictionary, by appending the entity specified by ent to the drawing database. The ent argument is a linked list of result buffers that should have the same format as a list returned by acdbEntGet().)

然后自己创建了一个resbuf链表对象,可成功在CAD中插入一个图形。

[code]void MakeEntFromResbuf()
{
        struct resbuf *newent;
        ads_point center = { 4.0, 4.0, 0.0 };

        newent = acutBuildList(
                RTDXF0, _T("CIRCLE"),
                62, 1, // 1 == red  
                10, center,
                40, 1.0, // Radius  
                0);

        if (acdbEntMake(newent) != RTNORM)
        {
                acdbFail(_T("Error making circle entity\n"));
        }

        acutRelRb(newent);
}
https://blog.csdn.net/mary288267/article/details/118959992[/code]

 

 

 

 

ObjectARX如何利用resbuf在当前数据库插入一个新实体
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

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

GMT+8, 2024-11-1 11:30 , Processed in 0.145135 second(s), 28 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

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