DataBeam :
- cambiato nome modulo ProcessBlockHouseFront.lua in ProcessBlockHausFront.lua - in BeamLib.MakeOneFaceBySaw gestito offset longitudinale per calcolo attacco/uscita - DiceCut se faccia principale inclinata verso il basso si parte sempre da sopra - in MachiningLib.FindMilling aggiunta possibilità gestione massimo affondamento richiesto - corretto riconoscimento fori da sotto - in LapJoint corretto angolo 3° asse fittizio per sega a catena - in Tenone aggiunta gestione scelta utensile in base all'altezza dello stesso.
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
-- 2019/09/25 Aggiunta gestione StepJoint e StepJointNotch
|
||||
-- 2020/01/21 Aggiunta gestione ScarfJoint
|
||||
-- 2020/02/10 Aggiunta gestione FrenchRidgeLap
|
||||
-- 2020/02/11 Aggiunta gestione BlockHouseFront
|
||||
-- 2020/02/11 Aggiunta gestione BlockHausFront
|
||||
|
||||
-- Tabella per definizione modulo
|
||||
local BeamExec = {}
|
||||
@@ -55,8 +55,8 @@ _G.package.loaded.ProcessDrill = nil
|
||||
local Drill = require( 'ProcessDrill')
|
||||
_G.package.loaded.ProcessFrenchRidgeLap = nil
|
||||
local FrenchRidgeLap = require( 'ProcessFrenchRidgeLap')
|
||||
_G.package.loaded.ProcessBlockHouseFront = nil
|
||||
local BlockHouseFront = require( 'ProcessBlockHouseFront')
|
||||
_G.package.loaded.ProcessBlockHausFront = nil
|
||||
local BlockHausFront = require( 'ProcessBlockHausFront')
|
||||
_G.package.loaded.ProcessTenon = nil
|
||||
local Tenon = require( 'ProcessTenon')
|
||||
_G.package.loaded.ProcessMortise = nil
|
||||
@@ -530,8 +530,8 @@ local function ClassifyFeatures( vProc, b3Raw, Stats)
|
||||
elseif FrenchRidgeLap.Identify( Proc) then
|
||||
bOk, bDown = FrenchRidgeLap.Classify( Proc)
|
||||
-- se block house front
|
||||
elseif BlockHouseFront.Identify( Proc) then
|
||||
bOk, bDown = BlockHouseFront.Classify( Proc)
|
||||
elseif BlockHausFront.Identify( Proc) then
|
||||
bOk, bDown = BlockHausFront.Classify( Proc)
|
||||
-- se mortasa (anche frontale)
|
||||
elseif Mortise.Identify( Proc) then
|
||||
bOk, bDown = Mortise.Classify( Proc)
|
||||
@@ -686,9 +686,9 @@ local function AddFeatureMachining( Proc, nPhase, nRawId, nPartId, dCurrOvmH, b3
|
||||
-- esecuzione giunzione francese
|
||||
bOk, sErr = FrenchRidgeLap.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
|
||||
-- se block house front ( 3/4-038-X)
|
||||
elseif BlockHouseFront.Identify( Proc) then
|
||||
elseif BlockHausFront.Identify( Proc) then
|
||||
-- esecuzione giunzione francese
|
||||
bOk, sErr = BlockHouseFront.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
|
||||
bOk, sErr = BlockHausFront.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
|
||||
-- se tenone ( 1/2-050-X)
|
||||
elseif Tenon.Identify( Proc) then
|
||||
-- esecuzione tenone
|
||||
|
||||
Reference in New Issue
Block a user