NX二次开发-UFUN点收集器UF_UI_select_point_collection
Posted nxopen2018
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NX二次开发-UFUN点收集器UF_UI_select_point_collection相关的知识,希望对你有一定的参考价值。
1 #include <uf.h> 2 #include <uf_ui.h> 3 4 5 UF_initialize(); 6 7 8 //点收集器 9 char sMessage[] = "点收集器"; 10 logical lCoincidentPoints = true; 11 UF_UI_chained_points_p_t chained_points; 12 int iCount; 13 int iResponse; 14 UF_UI_select_point_collection(sMessage, lCoincidentPoints, &chained_points, &iCount, &iResponse); 15 16 UF_terminate(); 17 18 Caesar卢尚宇 19 2019年7月1日
以上是关于NX二次开发-UFUN点收集器UF_UI_select_point_collection的主要内容,如果未能解决你的问题,请参考以下文章
NX二次开发-UFUN三点创建圆弧UF_CURVE_create_arc_thru_3pts
NX二次开发-UFUN将工程图中的点坐标映射到建模绝对坐标UF_VIEW_map_drawing_to_model
NX二次开发-UFUN将建模绝对空间中的点映射到工程图坐标UF_VIEW_map_model_to_drawing