|
应用场景:
当你是mils单位,然后拿到的资料是mm单位时,比如需要复制5个过孔,间距1.115mm
只需要用本Skill 执行 ixm 1.115 5 就可以往X方向以1.115间距摆放5个过孔。
zs_ipicks.zip
(1 KB, 下载次数: 1)
有需要的,快来下载吧!!很好用哦
(axlCmdRegister "ixm" 'zs_ipickx_main ?cmdType "sub_cmd")
(axlCmdRegister "iym" 'zs_ipicky_main ?cmdType "sub_cmd")
(axlCmdRegister "ixym" 'zs_ipickxy_main ?cmdType "sub_cmd")
(procedure zs_ipickx_main(@optional unitPitch number)
(prog (loopv)
(when unitPitch && atof(unitPitch)
(if number && atoi(number) then
loopv = 1
while(loopv <= atoi(number)
axlShellPost(sprintf(nil "ipick %L" axlMKS2UU(sprintf(nil "%s MM" unitPitch) ) ))
loopv++
)
else
axlShellPost(sprintf(nil "ipick %L" axlMKS2UU(sprintf(nil "%s MM" unitPitch) ) ))
);end if
);end when
)
);end procedure
;
(procedure zs_ipicky_main(@optional unitPitch number)
(prog (loopv)
(when unitPitch && atof(unitPitch)
(if number && atoi(number) then
loopv = 1
while(loopv <= atoi(number)
axlShellPost(sprintf(nil "ipick 0 %L" axlMKS2UU(sprintf(nil "%s MM" unitPitch) ) ))
loopv++
)
else
axlShellPost(sprintf(nil "ipick 0 %L" axlMKS2UU(sprintf(nil "%s MM" unitPitch) ) ))
)
);end when
)
);end procedure
(procedure zs_ipickxy_main(@optional unitPitchx unitPitchy number)
(prog (loopv)
(when unitPitchx && unitPitchy && atof(unitPitchx) && atof(unitPitchy)
(if number && atoi(number) then
loopv = 1
while(loopv <= atoi(number)
axlShellPost(sprintf(nil "ipick %L %L" axlMKS2UU(sprintf(nil "%s MM" unitPitchx) ) axlMKS2UU(sprintf(nil "%s MM" unitPitchy) ) ))
loopv++
)
else
axlShellPost(sprintf(nil "ipick %L %L" axlMKS2UU(sprintf(nil "%s MM" unitPitchx) ) axlMKS2UU(sprintf(nil "%s MM" unitPitchy) ) ))
)
);end when
)
);end procedure |
|