马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
使用如下方式,可以选择面
UF_UI_selection_options_t opts;
UF_UI_mask_t mask;
int response;
tag_t object, view;
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=UF_all_subtype;
opts.mask_triples->solid_type=UF_UI_SEL_FEATURE_ANY_FACE;
opts.scope=UF_UI_SEL_SCOPE_ANY_IN_ASSEMBLY;
int irc=UF_UI_select_single(message, [$opts, &response, &object, cursor, &view)]
使用同样的方法,将opts.mask_triples->object_type=UF_face_type;
改为opts.mask_triples->object_type=UF_line_type;
来选择线,就不行.请问,改如何才能选到线? |