学NX二次开发就上UG网:
拾取平面是以往低版本上的一个功能,可以通过指令的点来创建平面,此UG二次开发所用的函数为:UF_UI_specify_plane;
UG二次开发
NX二次开发拾取平面c++源码:
- /*中磊国际模具培训-拾取平面对话框*/
-
- 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 mode = 1, display = 0, response;
- tag_t plane_eid = NULL_TAG;
- UF_UI_specify_plane("就上UG网指定平面",&mode,display,&response,
- orientation,origin,&plane_eid);
- /* Terminate the API environment */
复制代码
|