From 3634af8f29e6f6f83de2ca5c5fa54a49c74c89e4 Mon Sep 17 00:00:00 2001 From: "andrea.villa" Date: Mon, 8 Sep 2025 14:47:43 +0200 Subject: [PATCH] Si calcola faccia Tunnel anche per topologia Bevel-2-Blind --- LuaLibs/FaceData.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LuaLibs/FaceData.lua b/LuaLibs/FaceData.lua index 7ed0e32..354851f 100644 --- a/LuaLibs/FaceData.lua +++ b/LuaLibs/FaceData.lua @@ -277,7 +277,7 @@ local function GetTunnelFaces( Proc, Part) local TunnelAddedFaces = {} if not ( ( Proc.Topology.bIsThrough and Proc.Topology.bAllRightAngles and Proc.nFct < 5) - or ( Proc.nFct == 1 )) then + or ( Proc.nFct == 1 ) or Proc.Topology.sName == 'Bevel-2-Blind') then error( 'GetTunnelFaces : Topology not implemented') end @@ -627,7 +627,7 @@ function FaceData.GetMainFaces( Proc, Part) Proc.Topology.sFamily == 'DoubleBevel' or Proc.Topology.sFamily == 'Cut' then if ( Proc.Topology.bIsThrough and Proc.Topology.bAllRightAngles and Proc.nFct < 5) - or ( Proc.nFct == 1) then + or ( Proc.nFct == 1) or Proc.Topology.sName == 'Bevel-2-Blind' then MainFaces.TunnelAddedFaces = GetTunnelFaces( Proc, Part) end