|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
char *radius="0";
char *angle="0";
char *depth="2";
UF_MODL_ask_boss_parms(feat,edit,[$diameter,&height,&taper_angle)]
UF_MODL_ask_feat_location(feat,location);
UF_MODL_ask_feat_direction(feat,dir_x,dir_y);
UF_MODL_create_plane(location,dir_x,[$plane)]
for(int i=0;i<3;i++)
direction=-dir_x;
UF_MODL_create_cyl_pocket(location,direction,diameter,depth,radius,angle,plane,[$cyl_pocket)]
编译没问题,但调试时发现cyl_pocket一直为0,plane是我自己生成的,不会是这个原因吧,这段代码错在哪里?高手指点一下吧 |
|