马上注册登录,享用更多网站功能!
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
我想把生成刀轨方式设置为follow periphery方式,下面是我设置参数的代码,哪位高手帮我看看,调试代码时发现UF_PARAM_cut_method_follow_periphery没有具体的数值,是无效值,谢谢!
int area_mill_param(int numop,tag_t *operTag)
{
UF_PARAM_set_int_value(operTag[numop-1],
UF_PARAM_CUT_METHOD,UF_PARAM_cut_method_follow_periphery);
UF_PARAM_set_int_value(operTag[numop-1],
UF_PARAM_STEPOVER_TYPE,UF_PARAM_stepover_type_percent_tool_diameter);
UF_PARAM_set_int_value(operTag[numop-1],
UF_PARAM_STEPOVER_PERCENT,50);
UF_PARAM_set_int_value(operTag[numop-1],
UF_PARAM_CUT_EDGE_TRACE_REMOVAL,UF_PARAM_edge_trace_removal_on);
UF_PARAM_set_int_value(operTag[numop-1],UF_PARAM_AVOIDANCE,UF_PARAM_avoid_stepover);
UF_PARAM_set_int_value(operTag[numop-1],
UF_PARAM_CUT_FOLLOW_CHECK_STATUS,UF_PARAM_cut_follow_check_on);
return 0;
} |