diff --git a/meshroom/nodes/aliceVision/MeshDecimate.py b/meshroom/nodes/aliceVision/MeshDecimate.py index 2bee6211..2c7e1ef7 100644 --- a/meshroom/nodes/aliceVision/MeshDecimate.py +++ b/meshroom/nodes/aliceVision/MeshDecimate.py @@ -50,7 +50,9 @@ class MeshDecimate(desc.CommandLineNode): desc.BoolParam( name='flipNormals', label='Flip Normals', - description='''Option to flip face normals. It can be needed as it depends on the vertices order in triangles and the convention change from one software to another.''', + description='Option to flip face normals.\n' + 'It can be needed as it depends on the vertices order in triangles\n' + 'and the convention change from one software to another.', value=False, uid=[0], ), diff --git a/meshroom/nodes/aliceVision/MeshDenoising.py b/meshroom/nodes/aliceVision/MeshDenoising.py index 4dc14f00..8da04174 100644 --- a/meshroom/nodes/aliceVision/MeshDenoising.py +++ b/meshroom/nodes/aliceVision/MeshDenoising.py @@ -41,7 +41,9 @@ class MeshDenoising(desc.CommandLineNode): desc.FloatParam( name='eta', label='Eta', - description='''Gaussian standard deviation for spatial weight, scaled by the average distance between adjacent face cetroids. Must be positive.''', + description='Gaussian standard deviation for spatial weight, ' + 'scaled by the average distance between adjacent face centroids.\n' + 'Must be positive.', value=1.5, range=(0.0, 20.0, 0.01), uid=[0], @@ -65,7 +67,9 @@ class MeshDenoising(desc.CommandLineNode): desc.ChoiceParam( name='meshUpdateMethod', label='Mesh Update Method', - description='Mesh Update Method: * ITERATIVE_UPDATE(SDFilter::MeshFilter Parameters::ITERATIVE_UPDATE) (default): ShapeUp styled iterative solver * POISSON_UPDATE(SDFilter::MeshFilterPa rameters::POISSON_UPDATE): Poisson-based update from [Want et al. 2015]', + description='Mesh Update Method\n' + ' * ITERATIVE_UPDATE (default): ShapeUp styled iterative solver \n' + ' * POISSON_UPDATE: Poisson-based update from [Want et al. 2015]', value=0, values=(0, 1), exclusive=True,