Compare commits

...

2 Commits

Author SHA1 Message Date
andrea.villa c1eee0201c In FeatureLib, quando si costruisce la Proc su una Trimesh, si ricava anche la Topologia 2026-08-21 14:38:01 +02:00
luca.mazzoleni 05fc22b1d4 Merge branch 'main' into develop 2026-07-30 17:28:02 +02:00
+3
View File
@@ -36,6 +36,9 @@ function FeatureLib.GetProcFromTrimesh( idTrimesh, Part, ProcToCopyFrom)
if ProcToCopyFrom and Proc.dVolume < 10 * GEO.EPS_SMALL then if ProcToCopyFrom and Proc.dVolume < 10 * GEO.EPS_SMALL then
Proc.dVolume = ProcToCopyFrom.dVolume Proc.dVolume = ProcToCopyFrom.dVolume
end end
Proc.nParts = EgtSurfTmPartCount( Proc.id) or 1
Proc.Topology = FeatureLib.ClassifyTopology( Proc, Part)
-- TODO servono anche altri dati raccolti nel collect?? -- TODO servono anche altri dati raccolti nel collect??
return Proc return Proc