diff --git a/docs/docs/sections/mesh_normal_estimation.md b/docs/docs/sections/mesh_normal_estimation.md index f014426..a06a8a7 100644 --- a/docs/docs/sections/mesh_normal_estimation.md +++ b/docs/docs/sections/mesh_normal_estimation.md @@ -8,7 +8,7 @@ import point_cloud_utils as pcu v, f = pcu.load_mesh_vf("bunny.ply") # n is a NumPy array with the same shape as v containing vertex normals -n = pcu.estimate_mesh_normals(v, f) +n = pcu.estimate_mesh_vertex_normals(v, f) ```