[nodes] Meshing: new cells filtering by solid angle ratio

This commit is contained in:
Fabien Castan 2021-02-12 11:23:53 +01:00
parent e82d0cd041
commit 78bc228dfb

View file

@ -294,6 +294,24 @@ A Graph Cut Max-Flow is applied to optimally cut the volume. This cut represents
uid=[0],
advanced=True,
),
desc.FloatParam(
name='minSolidAngleRatio',
label='minSolidAngleRatio',
description='Change cells status on surface around vertices to improve smoothness using solid angle ratio between full/empty parts. Zero to disable.',
value=0.2,
range=(0.0, 0.5, 0.01),
uid=[0],
advanced=True,
),
desc.IntParam(
name='nbSolidAngleFilteringIterations',
label='Nb Solid Angle Filtering Iterations',
description='Filter cells status on surface around vertices to improve smoothness using solid angle ratio between full/empty parts. Zero to disable.',
value=2,
range=(0, 30, 1),
uid=[0],
advanced=True,
),
desc.BoolParam(
name='refineFuse',
label='Refine Fuse',