Mentions légales du service

Skip to content
Snippets Groups Projects
Commit c042f77e authored by ALI Olivier's avatar ALI Olivier :monkey_face:
Browse files

Fixed a bug in the SolutionExplorer.geometric_filter function.

parent 89b2f2b1
No related branches found
No related tags found
No related merge requests found
Pipeline #239614 waiting for manual action
...@@ -185,7 +185,7 @@ class SolutionExplorer(object): ...@@ -185,7 +185,7 @@ class SolutionExplorer(object):
if type(comparator)==str and type(threshold) in [int, float]: if type(comparator)==str and type(threshold) in [int, float]:
comparator = list(comparator) comparator = list(comparator)
threshold = list(threshold) threshold = [threshold]
nbr_vtx = len(self.get_vertex_position()) nbr_vtx = len(self.get_vertex_position())
mask = np.array([True]*nbr_vtx) mask = np.array([True]*nbr_vtx)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment