hpp 1 //头文件 2 #include <NXOpen/Part.hxx> 3 #include <NXOpen/PartCollection.hxx> 4 #include <NXOpen/Session.hxx> 5 #include <NXOpen/ListingWindow.hxx> ...
分类:
其他好文 时间:
2019-11-17 15:02:44
阅读次数:
69
1 NX11+VS2013 2 3 #include <NXOpen/Part.hxx> 4 #include <NXOpen/PartCollection.hxx> 5 #include <NXOpen/Session.hxx> 6 #include <NXOpen/ListingWindow.h ...
用户出口(User Exit)是NX Open 中的一个重要概念。NX在运行过程中某些特定的位置存在规定的出口,当进程执行到这些出口时,NX会自动检查用户是否在此处已定义了指向内部程序位置的环境变量:若没有定义,则以NX默认的方式继续运行下去;若已定义,则从该处自动运行用户定制的应用程序。利用不同的 ...
分类:
其他好文 时间:
2019-11-16 12:39:18
阅读次数:
163
湖南师范大学 一号课题组 荣获“航天宏图杯”PIE遥感图像处理软件二次开发大赛二等奖 作品名称:慧眼识图——基于在线影像的海量特征信息提取 团队简介:周亮(指导老师)、高兴(组长)、阳孟杰、吴悠绿、李缘、张棋 作品简介: 该小组提出遥感应用数据为王的口号,根据目前下载遥感影像数据老大难的现状而开发的 ...
分类:
其他好文 时间:
2019-11-15 15:46:59
阅读次数:
87
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_layer.h> 5 #include <uf_ui.h> 6 7 8 UF_initialize(); 9 10 UF_UI_open_listing_window(); 11 //遍历图层 12 t ...
分类:
其他好文 时间:
2019-11-13 22:32:20
阅读次数:
115
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_layer.h> 5 6 7 UF_initialize(); 8 9 //创建图层类别 10 UF_LAYER_category_info_t category_info1; 11 strcpy(ca ...
分类:
其他好文 时间:
2019-11-13 22:13:04
阅读次数:
99
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_layer.h> 5 6 7 UF_initialize(); 8 9 //创建图层类别 10 UF_LAYER_category_info_t category_info1; 11 strcpy(ca ...
分类:
其他好文 时间:
2019-11-13 22:12:17
阅读次数:
94
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_layer.h> 5 6 7 UF_initialize(); 8 9 //创建图层类别 10 UF_LAYER_category_info_t category_info1; 11 strcpy(ca ...
分类:
其他好文 时间:
2019-11-13 21:57:12
阅读次数:
79
最近在做表达式创建,发现UFUN的创建表达式函数UF_MODL_create_exp,UF_MODL_create_exp_tag没有办法创建字符串类型的表达式,例如AA="BB"。 后来我是用NXOPEN去做的,直接录一下,然后改改就可以了。后来请教唐工,他给我一个新的方法,用导入表达式函数UF_ ...
分类:
其他好文 时间:
2019-11-13 21:55:51
阅读次数:
195
1 NX11+VS2013 2 3 #include <uf.h> 4 #include <uf_layer.h> 5 6 7 UF_initialize(); 8 9 //创建图层类别 10 UF_LAYER_category_info_t category_info1; 11 strcpy(ca ...
分类:
其他好文 时间:
2019-11-13 21:49:26
阅读次数:
94