DataBeam :
- aggiunta gestione rotazione 90deg anche sui profili.
This commit is contained in:
@@ -603,6 +603,21 @@ local function ClassifyFeatures( vProc, b3Raw, Stats)
|
||||
-- se giunto coda di rondine
|
||||
elseif Dovetail.Identify( Proc) then
|
||||
bOk, bDown = Dovetail.Classify( Proc, b3Raw)
|
||||
-- se profilo front
|
||||
elseif ProfFront.Identify( Proc) then
|
||||
bOk, bDown, bSide = ProfFront.Classify( Proc, b3Raw)
|
||||
-- se profilo concavo
|
||||
elseif ProfConcave.Identify( Proc) then
|
||||
bOk, bDown, bSide = ProfConcave.Classify( Proc, b3Raw)
|
||||
-- se profilo convesso
|
||||
elseif ProfConvex.Identify( Proc) then
|
||||
bOk, bDown, bSide = ProfConvex.Classify( Proc, b3Raw)
|
||||
-- se profilo caudato
|
||||
elseif ProfCamb.Identify( Proc) then
|
||||
bOk, bDown, bSide = ProfCamb.Classify( Proc, b3Raw)
|
||||
-- se profilo head
|
||||
elseif ProfHead.Identify( Proc) then
|
||||
bOk, bDown, bSide = ProfHead.Classify( Proc, b3Raw)
|
||||
-- se contorno libero
|
||||
elseif FreeContour.Identify( Proc) then
|
||||
bOk, bDown, bSide = FreeContour.Classify( Proc, b3Raw)
|
||||
|
||||
Reference in New Issue
Block a user