今天是2024年11月25日 第48周 星期一

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

更改

跳到导航 跳到搜索
添加28字节 、 2013年4月26日 (五) 23:25
无编辑摘要
第18行: 第18行:  
end
 
end
   −
function group( name )
+
function group( name, frame )
 
    if name == nil or name == '' then
 
    if name == nil or name == '' then
 
      return ''
 
      return ''
第35行: 第35行:  
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 )
第85行: 第85行:  
    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
匿名用户

导航菜单