- RidgeLap usa strategia STR0012 solo se 3 facce; 1 o 2 passano dalle strategie standard

- BasicCustomerStrategies e AvailableStrategies modificate di conseguenza
- in STR0012 correzioni varie
This commit is contained in:
luca.mazzoleni
2025-05-19 18:22:10 +02:00
parent 0a1c658b20
commit 9eeccf67a0
4 changed files with 51 additions and 6 deletions
+8
View File
@@ -80,6 +80,12 @@ function FeatureLib.NeedTopologyFeature( Proc)
return true
elseif ID.IsBlockHaus( Proc) then
return true
elseif ID.IsRidgeLap( Proc) then
if Proc.nFct == 3 then
return false
else
return true
end
end
-- se feature non tra quelle sopra, riconoscimento topologico non necessario
@@ -246,6 +252,8 @@ function FeatureLib.GetTopologyFromFeature( Proc, Part)
elseif Proc.FeatureInfo.bIsMortiseThrough then
Topology.sName = Topology.sName .. '-Through'
end
elseif ID.IsRidgeLap( Proc) then
Topology.sName = 'RidgeLap-3-Through'
else
Topology.sName = 'FEATURE'
end