找回密码 注册 QQ登录
开思网工业级高精度在线3D打印服务

iCAx开思网

CAD/CAM/CAE/设计/模具 高清视频【积分说明】如何快速获得积分?快速3D打印 手板模型CNC加工服务在线3D打印服务,上传模型,自动报价
查看: 17257|回复: 7
打印 上一主题 下一主题

请教UG二次开发中一个函数的使用(UF_UI_select_single)

[复制链接]
跳转到指定楼层
1
发表于 2006-3-29 10:46:58 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式

马上注册,结交更多同行朋友,交流,分享,学习。

您需要 登录 才可以下载或查看,没有帐号?注册

x
我做了一个对话框,在调出来的时候可以直接选择对象,我希望只选择平面对象,因此用了这个函数,我按例子上把程序输到了对话框的构造函数中,可是好像完全没有用,难道这个函数不是这样用吗?还是一定要调出对象选择对话框?这个函数还有一些其它什么要注意的地方吗?
  char *message = "Select Object";
  UF_UI_selection_options_t opts;
  UF_UI_mask_t mask;
  int response, irc =0;
  tag_t object, view;
  double cursor[3];

  opts.other_options = 0;
  opts.reserved = NULL;
  opts.num_mask_triples = 1;
  opts.mask_triples = &mask;

  opts.mask_triples->object_type = UF_face_type;  
  opts.mask_triples->object_subtype = 0;
  opts.mask_triples->solid_type = UF_UI_SEL_FEATURE_ANY_FACE;

  opts.scope = UF_UI_SEL_SCOPE_WORK_PART_AND_OCC;

  irc = UF_UI_select_single(message,&opts,&response,
                          &object,cursor,&view);
 
分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏 分享淘帖 赞一下!赞一下!
2
发表于 2006-3-30 08:32:13 | 只看该作者
我真可怜啊,为什么问问题总没有人回呢?
3
发表于 2006-3-30 19:55:23 | 只看该作者
你将UF_face_type改为UF_solid_type,试试看,在就是程序
4
发表于 2006-3-30 19:55:55 | 只看该作者
你将UF_face_type改为UF_solid_type,试试看,在就是程序 的问题
5
发表于 2006-3-31 12:51:33 | 只看该作者
谢啦,我已经用UF_UI_select_with_single_dialog作出来了,不过还想请教一下UF_solid_type-> UF_solid_face_subtype和UF_face_type有什么区别吗?
6
发表于 2006-4-1 14:32:11 | 只看该作者
UF_solid_type-> UF_solid_face_subtype
是选solid上的face的,比如block上的面。block上的面的type是UF_solid_type,不是UF_face_type。

UF_face_type是选face的。
7
发表于 2006-4-2 16:16:01 | 只看该作者
感谢指点!
8
发表于 2014-5-12 16:24:30 | 只看该作者
能说说你是怎么用UF_UI_select_with_single_dialog做出来的吗?
还有,按照他的修改了,怎么还是不得呀?
我的代码如下:
void select_plane(void)                        //选择一个平面对象
{
   

char *message = "Select Object";
UF_UI_selection_options_t opts;
UF_UI_mask_t mask;
int response;
tag_t view;
double cursor[3];
char error[133];
int unhighlight=0;

UF_initialize();
opts.other_options = 0;
opts.reserved = NULL;
opts.num_mask_triples = 1;
opts.mask_triples = &mask;
/* set up selectable type, subtype, solid type */
opts.mask_triples->object_type = UF_solid_type;
opts.mask_triples->object_subtype = UF_solid_face_subtype;
opts.mask_triples->solid_type = UF_UI_SEL_FEATURE_BODY;
/* set selection scope to be work part */
opts.scope = UF_UI_SEL_SCOPE_WORK_PART;
UF_UI_select_single(message,&opts,&response,
                          &object,cursor,&view);



}
您需要登录后才可以回帖 登录 | 注册

本版积分规则

3D打印手板模型快速制作服务,在线报价下单!

QQ 咨询|手机版|联系我们|iCAx开思网  

GMT+8, 2024-12-24 20:54 , Processed in 0.025565 second(s), 12 queries , Gzip On, Redis On.

Powered by Discuz! X3.3

© 2002-2024 www.iCAx.org

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