DataBeam :

- in Tenon e DtTenon riportato a 5 il massimo numero di passate
- in HouseMortise non si cercano lavorazioni tipo Mortise ma solo tipo Pocket
- in LapJoint corretto calcolo max diam. utensile per svuotature
- in LapJoint con due facce lunga si usa taglio due facce con lama.
This commit is contained in:
Dario Sassi
2020-05-27 22:23:48 +00:00
parent e26e0cabbb
commit eb0bf94e68
4 changed files with 32 additions and 46 deletions
+5 -2
View File
@@ -1,4 +1,4 @@
-- ProcessMortise.lua by Egaltech s.r.l. 2020/05/25
-- ProcessMortise.lua by Egaltech s.r.l. 2020/05/27
-- Gestione calcolo mortase per Travi
-- Tabella per definizione modulo
@@ -160,7 +160,10 @@ function ProcessMortise.Make( Proc, nPhase, nRawId, nPartId)
-- determino larghezza della mortasa
if dL < dW then dL, dW = dW, dL end
-- recupero la lavorazione
local sPocketing = ML.FindPocketing( 'Mortise', dW)
local sPocketing
if Proc.Prc ~= 53 then
sPocketing = ML.FindPocketing( 'Mortise', dW)
end
if not sPocketing then
sPocketing = ML.FindPocketing( 'Pocket', dW)
end