Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3c97e96e05 | |||
| b44a45e8b0 | |||
| 3a878f5793 | |||
| 9795bbdc80 | |||
| 187beba682 |
@@ -1955,7 +1955,7 @@ local function MakeRoundCleanContour( Proc, nPhase, nRawId, nPartId, b3Raw,
|
||||
-- inversione direzione utensile
|
||||
local bInvertMach = false
|
||||
if nPathInt then
|
||||
if bMillDown then
|
||||
if bMillDown and not bDoubleSide then
|
||||
if vtN1:getZ() > 10 * GEO.EPS_SMALL then
|
||||
EgtSetMachiningParam( MCH_MP.TOOLINVERT, true)
|
||||
bInvertMach = true
|
||||
|
||||
@@ -33,6 +33,7 @@ local sEnableExtraBladeUpperFace = 'Q02' -- i
|
||||
local sDepthChamferMill = 'Q03' -- d
|
||||
local sOverMaterialForFinish = 'Q04' -- d
|
||||
local sPreemptiveChamfer = 'Q05' -- i
|
||||
local sDisableAntiSplint = 'Q19'
|
||||
|
||||
-- abilitazioni extra
|
||||
local dMakeAntiSplintOnHead = 1 -- valore impronta antischeggia, per disattivare settare = nil o = 0
|
||||
@@ -301,13 +302,14 @@ function ProcessProfCamb.Make( Proc, nPhase, nRawId, nPartId, dCurrOvmH)
|
||||
local sMilling
|
||||
-- in base alla direzione iniziale della curva e al valore di entrata valido, setto l'antischeggia
|
||||
local bMakeAs
|
||||
local bDeleteAntiSplint = ( EgtGetInfo( Proc.Id, sDisableAntiSplint, 'i') or 0) == 1
|
||||
local vtStart = EgtSV( AuxId, GDB_ID.ROOT)
|
||||
if nSide == 0 then
|
||||
if abs(vtStart:getY()) >= dActivateCompoAng and dMakeAntiSplintOnHead and abs(dMakeAntiSplintOnHead) > 0 then
|
||||
if abs( vtStart:getY()) >= dActivateCompoAng and dMakeAntiSplintOnHead and abs( dMakeAntiSplintOnHead) > 0 and not bDeleteAntiSplint then
|
||||
bMakeAs = true
|
||||
end
|
||||
else
|
||||
if abs(vtStart:getZ()) >= dActivateCompoAng and dMakeAntiSplintOnHead and abs(dMakeAntiSplintOnHead) > 0 then
|
||||
if abs( vtStart:getZ()) >= dActivateCompoAng and dMakeAntiSplintOnHead and abs( dMakeAntiSplintOnHead) > 0 and not bDeleteAntiSplint then
|
||||
bMakeAs = true
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,4 +1,10 @@
|
||||
==== Beam Update Log ====
|
||||
Versione 3.1g5 (31/07/2026)
|
||||
- Fixed : in RoundCleanContour per tasche a 3 facce a U in doppio
|
||||
|
||||
Versione 3.1g4 (31/07/2026)
|
||||
- Modif : in ProfCamb aggiunta Q19, se = 1 disabilita lavorazione AntiSplint
|
||||
- Fixed : in RoundCleanContour per tasche a 3 facce a U MillDown
|
||||
|
||||
Versione 3.1g3 (24/07/2026)
|
||||
- Fixed : in slot con lama corretta scelta SCC
|
||||
|
||||
+1
-1
@@ -2,5 +2,5 @@
|
||||
-- Gestione della versione di Beam
|
||||
|
||||
NAME = 'Beam'
|
||||
VERSION = '3.1g3'
|
||||
VERSION = '3.1g5'
|
||||
MIN_EXE = '3.1b1'
|
||||
|
||||
Reference in New Issue
Block a user