From eb04899922c172ec50e8f056bca905e6e1a71eec Mon Sep 17 00:00:00 2001 From: Helge Gehring <42973196+HelgeGehring@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:15:34 -0800 Subject: [PATCH] fix number of letters --- meshwell/model.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/meshwell/model.py b/meshwell/model.py index e1fc66b..a1f0932 100644 --- a/meshwell/model.py +++ b/meshwell/model.py @@ -235,14 +235,14 @@ def mesh( if progress_bars: if physical_name: enumerator.set_description( - f"{physical_name:<30} - {'instanciate':<10}" + f"{physical_name:<30} - {'instanciate':<15}" ) # First create the shape dimtags_out = entity_obj.instanciate() if progress_bars: if physical_name: - enumerator.set_description(f"{physical_name:<30} - {'dimtags':<10}") + enumerator.set_description(f"{physical_name:<30} - {'dimtags':<15}") # Parse dimension dim = validate_dimtags(dimtags_out) max_dim = max(dim, max_dim) @@ -251,7 +251,7 @@ def mesh( if progress_bars: if physical_name: enumerator.set_description( - f"{physical_name:<30} - {'entities':<10}" + f"{physical_name:<30} - {'entities':<15}" ) # Assemble with other shapes current_entities = LabeledEntities( @@ -264,7 +264,7 @@ def mesh( ) if progress_bars: if physical_name: - enumerator.set_description(f"{physical_name:<30} - {'boolean':<10}") + enumerator.set_description(f"{physical_name:<30} - {'boolean':<15}") if index != 0: cut = self.occ.cut( current_entities.dimtags, @@ -280,13 +280,13 @@ def mesh( if progress_bars: if physical_name: enumerator.set_description( - f"{physical_name:<30} - {'duplicates':<10}" + f"{physical_name:<30} - {'duplicates':<15}" ) self.occ.removeAllDuplicates() if progress_bars: if physical_name: enumerator.set_description( - f"{physical_name:<30} - {'sync':<10}" + f"{physical_name:<30} - {'sync':<15}" ) self.sync_model() current_entities.dimtags = list(set(cut[0]))