Mastercam后处理命令块传递参数用法,新版中新加入的功能,此方法的用法非常接近VB.NET的用法,可同时传递多个参数。
后处理头数据,请勿更改
[POST_VERSION] #DO NOT MOVE OR ALTER THIS LINE# V24.00 P0 E1 W24.00 T1614093555 M24.00 I0 O1scncpost_revision := “22.81” # Internal revision number for use by CNC Software only. Please do not change this number.scustpost_revision := “0” # Revision number for use by Resellers or customers.
首先定义需要传递的数据
num1 : 2num2 : 3
定义接受传递的数据:
key1 : 0key2 : 0
定义保存输出的数据
skey : 0
定义数据输出格式
fs2 990 9 0 9 0fmt 990 skey
pencrypt_key(key1,key2) skey = key1 * key2
输出结果: 6
传递参数并调用计算过程
pheader$ #Call before start of file pencrypt_key(num1,num2) *skey, e$
传递参数过程采用后处理最新技术,参数传递的方法把目标数据传递到 过程命令块。
该方法具体可参考相关视频