转—记录一下获取NC程序名称的方法
Posted liuxiaoqing1
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了转—记录一下获取NC程序名称的方法相关的知识,希望对你有一定的参考价值。
案例源代码如下: #include <uf_obj.h> #include <uf_setup.h> #include <uf_ncgroup.h> static logical cycelGenerateCb(tag_t tag, void* data) { logical is_group; char name[133]; UF_CALL(UF_NCGROUP_is_group(tag, &is_group)); UF_CALL(UF_OBJ_ask_name(tag, name)); UF_UI_write_listing_window(name); UF_UI_write_listing_window(" "); return TRUE; } static void do_it(void) { UF_UI_open_listing_window(); tag_t setup_tag; tag_t program_group; UF_CALL(UF_SETUP_ask_setup(&setup_tag)); UF_CALL(UF_SETUP_ask_program_root(setup_tag, &program_group)); UF_CALL(UF_NCGROUP_cycle_members(program_group, cycelGenerateCb, NULL)); } 其中,有几点注意一下: 1) 将UF_SETUP_ask_program_root换成UF_SETUP_ask_geom_root或UF_SETUP_ask_mthd_root或UF_SETUP_ask_mct_root,则UF_NCGROUP_cycle_members转而对几何体、加工方法、刀具遍历; 2) 刀具tag的获取也可以用UF_OBJ_cycle_objs_in_part来获得,估计其它项也可以;
本文转自https://www.xuebuyuan.com/478038.html
以上是关于转—记录一下获取NC程序名称的方法的主要内容,如果未能解决你的问题,请参考以下文章
NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段
错误记录Flutter 混合开发获取 BinaryMessenger 报错 ( FlutterActivityAndFragmentDelegate.getFlutterEngine() )(代码片段