From 62b49bd0cfb1d0a4b3ce3ce6f47f47248ea97f84 Mon Sep 17 00:00:00 2001 From: DarioS Date: Thu, 3 Sep 2026 17:59:38 +0200 Subject: [PATCH] EgtMachKernel : - in PocketingNT modificato calcolo feed di attacco per elica e zigzag per frese che non lavorano di testa come in Pocketing. --- PocketingNT.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PocketingNT.cpp b/PocketingNT.cpp index bf8ecfc..be9cfad 100644 --- a/PocketingNT.cpp +++ b/PocketingNT.cpp @@ -6355,6 +6355,9 @@ PocketingNT::GetRightFeed( const Vector3d& vtMove, const Vector3d& vtTool) const double PocketingNT::GetRightStartFeed( const Vector3d& vtMove, const Vector3d& vtTool) const { + // gli utensili che non lavorano di testa hanno giĆ  la feed di inizio corretta e operano solo su elica e zigzag + if ( GetTipFeed() < EPS_SMALL) + return GetStartFeed() ; // Determino i versori Vector3d vtM = vtMove ; vtM.Normalize() ;