Compare commits

..

5 Commits

Author SHA1 Message Date
luca.mazzoleni a8184b2b4f Merge branch 'develop' into testPerFabio 2025-02-17 16:29:35 +01:00
luca.mazzoleni 4e5ca4f474 modifica versione 2025-02-17 16:26:49 +01:00
luca.mazzoleni b6c8affa9a - in BeamData riportata GetChainsaWInitAngs a
versione precedente
- decimali in generazione portati a 3
2025-02-17 16:20:12 +01:00
andrea.villa 168bb88652 Cambio versione in MLDE 2025-02-07 11:45:38 +01:00
andrea.villa a899576839 Piccola correzione in selezione motosega, l'asse B è già in posizione corretta. 2025-02-07 11:45:13 +01:00
6 changed files with 16 additions and 11 deletions
+4 -4
View File
@@ -177,11 +177,11 @@ end
BeamData.GetBlockedAxis = GetBlockedAxis
---------------------------------------------------------------------
local function GetChainSawInitAngs( vtN, vtO, nInd)
if nInd == 1 then
return ''
local function GetChainSawInitAngs( vtN, vtO)
if vtN:getY() > 0 and vtO:getX() > 0 then
return 'C=0'
else
return EgtIf( vtN:getY() > 0, 'C=180', 'C=-180')
return ''
end
end
BeamData.GetChainSawInitAngs = GetChainSawInitAngs
+4 -4
View File
@@ -21,7 +21,7 @@ function OnStart()
EMT.USETO1 = false -- abilitazione uso origine tavola
EMT.MODAL = true -- abilitazione emissione modale
EMT.INCHES = false -- unità di misura mm/inches
EMT.DECNUM = 5 -- numero di decimali dopo la virgola
EMT.DECNUM = 3 -- numero di decimali dopo la virgola
EMT.NUM = false -- abilitazione numerazione linee
--EMT.Nt = 'N' -- token per la numerazione di linea
--EMT.LINENBR = 0 -- numero di linea
@@ -1767,9 +1767,9 @@ function CalcInterpPlane()
local vtY = EMT.IPLGLFR:getVersY()
local vtZ = EMT.IPLGLFR:getVersZ()
EMT.IPLGLSTR = ' X0 Y' .. EmtLenToString( xS, EMT.DECNUM) .. ' Z0' ..
' A' .. EgtNumToString( - vtX:getY(), 6) .. ' B' .. EgtNumToString( vtX:getX(), 6) .. ' C' .. EgtNumToString( vtX:getZ(), 6) ..
' I' .. EgtNumToString( - vtY:getY(), 6) .. ' J' .. EgtNumToString( vtY:getX(), 6) .. ' K' .. EgtNumToString( vtY:getZ(), 6) ..
' P' .. EgtNumToString( - vtZ:getY(), 6) .. ' Q' .. EgtNumToString( vtZ:getX(), 6) .. ' R' .. EgtNumToString( vtZ:getZ(), 6)
' A' .. EgtNumToString( - vtX:getY(), EMT.DECNUM) .. ' B' .. EgtNumToString( vtX:getX(), EMT.DECNUM) .. ' C' .. EgtNumToString( vtX:getZ(), EMT.DECNUM) ..
' I' .. EgtNumToString( - vtY:getY(), EMT.DECNUM) .. ' J' .. EgtNumToString( vtY:getX(), EMT.DECNUM) .. ' K' .. EgtNumToString( vtY:getZ(), EMT.DECNUM) ..
' P' .. EgtNumToString( - vtZ:getY(), EMT.DECNUM) .. ' Q' .. EgtNumToString( vtZ:getX(), EMT.DECNUM) .. ' R' .. EgtNumToString( vtZ:getZ(), EMT.DECNUM)
EMT.IPLGL = true
end
+3 -1
View File
@@ -533,7 +533,9 @@ function OnSimulToolSelect( dPosA)
if GetTCSet( EMT.TCPOS) == 1 then
EgtSetAxisPos( 'B', 90)
else
EgtSetAxisPos( 'B', -90)
if EMT.HEAD ~= 'H3' then
EgtSetAxisPos( 'B', -90)
end
end
-- breve pausa
EgtPause( 100)
+1 -1
View File
@@ -10,7 +10,7 @@
require( 'EmtGenerator')
EgtEnableDebug( false)
PP_VER = '2.7b1_DEV1'
PP_VER = '2.7b1_TEST'
PP_NVER = '2.7.2.1'
MIN_MACH_VER = '2.5k1'
MACH_NAME = 'Essetre-FASTrl'
+3
View File
@@ -1,5 +1,8 @@
==== Common_FAST Update Log ====
Versione 2.7-- (--/--/2025)
- (SIM) Piccola correzione in selezione motosega, l'asse B è già in posizione corretta.
Versione 2.7a1 (07/01/2024)
- (MLDE-SIM-GEN) Nuovo aggregato 90° (H7) per fresa tipo BlockHaus. Ticket#2142
- (SIM-GEN) Aumentati limiti massimi di pinzaggio minimo
+1 -1
View File
@@ -3,7 +3,7 @@
local InfoCommon_STD_PP = {
NAME = 'Common_FAST', -- nome script PP standard
VERSION = '2.7a1', -- versione script
VERSION = '2.7--', -- versione script
MIN_MACH_VER_PP_COMMON = '2.5k1' -- versione minima kernel
}