学UG二次开发就上UG网:
UG二次二发拾取草图可以用来拾取当前绘图窗口中的草图特征,其要用的函数:UF_UI_select_sketch;
UG二次开发
NX二次开发拾取草图C++源码:
- /* TODO: Add your application code here */
- /*中磊国际模具培训-选择草图对话框*/
- char Message[] = "就上UG网选择草图对话框";
- tag_t Sketch;
- int Response;
- UF_UI_select_sketch(Message,NULL, &Sketch, &Response);
- /* Terminate the API environment */
复制代码
|