Skip to content

Commit

Permalink
Mesh From Points - Fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
david-cattermole committed Nov 9, 2024
1 parent af8d772 commit d1a3ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/mmSolver/tools/meshfrompoints/lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def _delaunator_indices(world_positions, flat_positions):


def _best_fit_plane_matrix_from_3d_points(world_positions):
assert world_positions.len() >= const.MINIMUM_NUMBER_OF_POINTS
assert len(world_positions) >= const.MINIMUM_NUMBER_OF_POINTS

# Our plug-in must be loaded to access the mmBestFitPlane command.
mmapi.load_plugin()
Expand Down

0 comments on commit d1a3ef2

Please sign in to comment.