From b0827ad72d618288f6381d9376024aa6eee38c3a Mon Sep 17 00:00:00 2001 From: "luca.mazzoleni" Date: Mon, 15 Jun 2026 10:21:11 +0200 Subject: [PATCH] - in BALDEKEEPWASTE piccola correzione --- LuaLibs/PreSimulationLib.lua | 6 ------ StrategyLibs/BLADEKEEPWASTE.lua | 8 ++++---- 2 files changed, 4 insertions(+), 10 deletions(-) diff --git a/LuaLibs/PreSimulationLib.lua b/LuaLibs/PreSimulationLib.lua index fb405ef..c110276 100644 --- a/LuaLibs/PreSimulationLib.lua +++ b/LuaLibs/PreSimulationLib.lua @@ -209,12 +209,6 @@ local function CheckOutOfStrokePoint( ptOnToolTipCenter, vtHead, nSCC, Tool, vtA return true end - -- EgtSetAxisPos( 'T', dT) - -- EgtSetAxisPos( 'Y', dY) - -- EgtSetAxisPos( 'Z', dZ) - -- EgtSetAxisPos( 'C', dC1) - -- EgtSetAxisPos( 'A', dA1) - -- se si arriva qui, il punto non รจ in finecorsa return false end diff --git a/StrategyLibs/BLADEKEEPWASTE.lua b/StrategyLibs/BLADEKEEPWASTE.lua index 6425b20..4273a1c 100644 --- a/StrategyLibs/BLADEKEEPWASTE.lua +++ b/StrategyLibs/BLADEKEEPWASTE.lua @@ -222,21 +222,21 @@ function BLADEKEEPWASTE.Make( Proc, Part, OptionalParameters) elseif Proc.nFct == 2 then -- per angolo tra le facce >= 90deg (feature convessa) non applicabile if Proc.AdjacencyMatrix[1][2] > 10 * GEO.EPS_SMALL or Proc.AdjacencyMatrix[1][2] < -91 then - Result = FeatureLib.GetStrategyResultNotApplicable( 'BladeKeepWaste : angle between faces must be concave and >= 90deg') + Result = FeatureLib.GetStrategyResultNotApplicable() return Machinings, Result end elseif Proc.nFct == 3 then -- caso speciale RidgeLap - per angolo tra le facce >= 90deg (feature convessa) non applicabile if Proc.AdjacencyMatrix[1][2] > 10 * GEO.EPS_SMALL or Proc.AdjacencyMatrix[1][2] < -91 then - Result = FeatureLib.GetStrategyResultNotApplicable( 'BladeKeepWaste : angle between faces must be concave and >= 90deg') + Result = FeatureLib.GetStrategyResultNotApplicable() return Machinings, Result end if Proc.AdjacencyMatrix[1][3] > 10 * GEO.EPS_SMALL or Proc.AdjacencyMatrix[1][3] < -91 then - Result = FeatureLib.GetStrategyResultNotApplicable( 'BladeKeepWaste : angle between faces must be concave and >= 90deg') + Result = FeatureLib.GetStrategyResultNotApplicable() return Machinings, Result end if Proc.AdjacencyMatrix[2][3] > 10 * GEO.EPS_SMALL or Proc.AdjacencyMatrix[2][3] < -91 then - Result = FeatureLib.GetStrategyResultNotApplicable( 'BladeKeepWaste : angle between faces must be concave and >= 90deg') + Result = FeatureLib.GetStrategyResultNotApplicable() return Machinings, Result end end