今天是2024年十一月25日 第48周 星期一
代人,时大变了。
我们生活在大地上,但我们的梦想超越天空。
更改
跳到导航
跳到搜索
第18行:
第18行:
− +
第35行:
第35行:
− +
− +
第85行:
第85行:
− +
无编辑摘要
end
end
function group( name )
function group( name, frame )
if name == nil or name == '' then
if name == nil or name == '' then
return ''
return ''
end
end
function Gcode( args )
function Gcode( args, frame )
local code = {}
local code = {}
for i = 1, 30 do
for i = 1, 30 do
table.insert( code, group( args['G' .. i] ) )
table.insert( code, group( args['G' .. i], frame ) )
end
end
code = table.concat( code )
code = table.concat( code )
local args = frame:getParent().args
local args = frame:getParent().args
local Tc = Tcode( args )
local Tc = Tcode( args )
local Gc = Gcode( args )
local Gc = Gcode( args, frame )
local Lc = Lcode( args )
local Lc = Lcode( args )
local code = Tc .. Gc .. Lc
local code = Tc .. Gc .. Lc