|
马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
上面那篇忘了写标题了,请斑竹删掉了,谢谢。
请斑竹和大侠们帮帮忙,我头都要想破了,还不出来啊,都几天了。
我是要得到一个物体上edge的direction的tag.要求是用函数
UF_SO_create_dirr_line (
const tag_t object_in_part,
const UF_SO_update_option_t update_option,
const tag_t line,
const logical flip,
tag_p_t direction );
但实在是出不来结果,分析一下,第2,3,4参数应该不会有问题的。
出问题只可能在第1,5个参数。
第1个参数要求是任何一个object的tag都行啊。
第5个参数是输出啊,但这个输出是tag的指针。
我都不知道是怎么出错的,定义他的程序如下:
UF_SO_update_option_t update_option=UF_SO_update_within_modeling;
logical flip=TRUE;
tag_p_t direction;
UF_SO_create_dirr_line (object1, update_option, object1, flip,direction );
sprintf(xiaoxi,"direction is :%d",*direction);
uc1601(xiaoxi,1);
其中object1是我块的edge的tag,由于object_in_part是the tag of any valid object that exists in the part.所以我也选了object1‘
所以,请大家试试,尤其是用过UF_SO的函数的兄弟,帮帮忙。
谢谢了。 |
|