DataBeam :
- aggiunta gestione feature SawCut (0/3/4-013-X) - elevazione del tenone diminuita di 0.1 per evitare poi problemi con arrotondamenti.
This commit is contained in:
@@ -41,6 +41,8 @@ _G.package.loaded.ProcessLongCut = nil
|
||||
local LongCut = require( 'ProcessLongCut')
|
||||
_G.package.loaded.ProcessLongDoubleCut = nil
|
||||
local Long2Cut = require( 'ProcessLongDoubleCut')
|
||||
_G.package.loaded.ProcessSawCut = nil
|
||||
local SawCut = require( 'ProcessSawCut')
|
||||
_G.package.loaded.ProcessRidgeLap = nil
|
||||
local RidgeLap = require( 'ProcessRidgeLap')
|
||||
_G.package.loaded.ProcessLapJoint = nil
|
||||
@@ -502,6 +504,9 @@ local function ClassifyFeatures( vProc, b3Raw, Stats)
|
||||
-- se doppio taglio longitudinale
|
||||
elseif Long2Cut.Identify( Proc) then
|
||||
bOk, bDown = Long2Cut.Classify( Proc)
|
||||
-- se taglio con lama
|
||||
elseif SawCut.Identify( Proc) then
|
||||
bOk, bDown = SawCut.Classify( Proc)
|
||||
-- se mezzo-legno di testa
|
||||
elseif RidgeLap.Identify( Proc) then
|
||||
bOk, bDown = RidgeLap.Classify( Proc)
|
||||
@@ -642,6 +647,10 @@ local function AddFeatureMachining( Proc, nPhase, nRawId, nPartId, dCurrOvmH, b3
|
||||
else
|
||||
bOk, sErr = LongCut.Make( Proc, nPhase, nRawId, nPartId)
|
||||
end
|
||||
-- se taglio con lama ( 0/3/4-013-X)
|
||||
elseif SawCut.Identify( Proc) then
|
||||
-- esecuzione taglio
|
||||
bOk, sErr = SawCut.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
|
||||
-- se mezzo-legno di testa ( 1/2-030-X)
|
||||
elseif RidgeLap.Identify( Proc) then
|
||||
-- esecuzione mezzo-legno di testa
|
||||
|
||||
Reference in New Issue
Block a user