|
马上注册,结交更多同行朋友,交流,分享,学习。
您需要 登录 才可以下载或查看,没有帐号?注册
x
用平面去截一个特征(比如圆柱),求截面曲线,我用下面的代码怎么生成不了截面曲线?请各位帮忙看看错在什么地方?谢谢了
tag_t display_tag;
tag_t section_curves;
char sMessage[]="选择几何特征";
int iCount,response;
tag_t *feature;
UF_UI_select_feature(sMessage,NULL,&iCount,&feature,&response);//指定特征几何体
double orientation[9]={0,0,0,0,0,0,0,0,0};
double origin[3]={0,0,0};
double pts[6]={0,0,0,0,0,0};
int error_code=0;
int mode,display;
tag_t plane_eid;
mode=1;
display=0;
error_code=UF_UI_specify_plane("指定平面",&mode,display,&response,orientation,origin,&plane_eid);//调用拾取平面对话框
UF_CURVE_section_planes_data_t planes_data={&plane_eid,1};
UF_CURVE_section_general_data_t objects_section={feature,1,0,1,2,0.1};
UF_CURVE_section_from_planes (&objects_section,&planes_data, §ion_curves); //生成截面线 |
|