iCAx开思工具箱
标题:
遍历当前part的所有特征
[打印本页]
作者:
kade11
时间:
2012-11-14 19:58
标题:
遍历当前part的所有特征
static void do_ugopen_api(void)
{
int num=0;
char* feat_type;
tag_t obj=null_tag;
tag_t disp_part=UF_PART_ask_display_part();
UF_OBJ_cycle_objs_in_part(disp_part,UF_feature_type,&obj);
while(obj!=null_tag)
{
num++;
UF_MODL_ask_feat_type(obj,&feat_type);
//UF_DISP_set_highlight(obj,1);
int error_code=0;
char* str = (char*)UF_allocate_memory(sizeof(unsigned int)+1,&error_code);
sprintf(str,"\n特征%d的id=%u,其类型为%s\n",num,obj,feat_type);
UF_UI_open_listing_window();
UF_UI_write_listing_window(str);
UF_free(str);
UF_OBJ_cycle_objs_in_part(disp_part,UF_feature_type,&obj);
}
}
作者:
kade11
时间:
2012-11-14 19:59
只能出现一个特征为什么,每次都是坐标系,删除坐标系,出现下一个
欢迎光临 iCAx开思工具箱 (https://t.icax.org/)
Powered by Discuz! X3.3