Skip to content

Commit

Permalink
laplacian.py line 413: WL corrected to L
Browse files Browse the repository at this point in the history
  • Loading branch information
01JoannaS committed May 14, 2024
1 parent f88cf7a commit b1886a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pc_skeletor/laplacian.py
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ def __least_squares_sparse(self, pcd_points, L, laplacian_weighting, positional_
if self.debug:
pcd = o3d.geometry.PointCloud()
pcd.points = o3d.utility.Vector3dVector(pcd_points)
mean_curvature_flow = WL @ pcd_points
mean_curvature_flow = L @ pcd_points
# Scale normals for visualization
pcd.normals = o3d.utility.Vector3dVector(mean_curvature_flow / 5)

Expand Down

0 comments on commit b1886a7

Please sign in to comment.