- in MachiningLib -> StartsLeftSide contemplato ToolInvert

- in SLOTBYBLADE aggiunta gestione lavorazioni di coda
- in STR0003 > lama aggiunta gestione lavorazioni di coda
- in Config STR0003 e STR0004 aggiunto parametro dExtendAfterTail per decidere di quanto estendere una lavorazione oltre la coda
This commit is contained in:
luca.mazzoleni
2024-12-03 14:55:46 +01:00
parent d58be78868
commit bb82dcb724
6 changed files with 41 additions and 16 deletions
+3
View File
@@ -66,6 +66,9 @@ end
function MachiningLib.StartsLeftSide( Machining)
local bStartsLeftSide = ( Machining.vtEdgeDirection:getX() > 10 * GEO.EPS_SMALL and not Machining.bInvert)
or ( not( Machining.vtEdgeDirection:getX() > 10 * GEO.EPS_SMALL) and Machining.bInvert)
if Machining.bToolInvert then
bStartsLeftSide = not bStartsLeftSide
end
return bStartsLeftSide
end