Prima versione semi-funzionante forature con fresa, ancora in fase di test
This commit is contained in:
@@ -619,6 +619,14 @@ function BeamLib.TableCopyDeep( OriginalTable)
|
||||
return CopiedTable
|
||||
end
|
||||
|
||||
---------------------------------------------------------------------
|
||||
function BeamLib.MergeTables( OriginalTable, InputTable)
|
||||
local result = {}
|
||||
for k, v in pairs( OriginalTable) do result[k] = v end
|
||||
for k, v in pairs( InputTable) do result[k] = v end
|
||||
return result
|
||||
end
|
||||
|
||||
---------------------------------------------------------------------
|
||||
function BeamLib.FindEdgeBestOrientedAsDirection( Edges, vtDirection)
|
||||
local BestEdge = {}
|
||||
|
||||
Reference in New Issue
Block a user