summaryrefslogtreecommitdiff
path: root/src/python/doc/persistence_graphical_tools_user.rst
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-01-13 09:55:01 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2020-01-13 09:55:01 +0100
commitb6e1d3025e27eed08eb8a1c5f95a80d6c6a9ce15 (patch)
tree5ada1e558644fcd8fea02d6156901b54cafdbfbd /src/python/doc/persistence_graphical_tools_user.rst
parentf61d7c2c9f1148ee1bc749d1f7007f5c01f4ffb4 (diff)
Fix #194 : Rename read_off as it only read points from OFF file
Diffstat (limited to 'src/python/doc/persistence_graphical_tools_user.rst')
-rw-r--r--src/python/doc/persistence_graphical_tools_user.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/doc/persistence_graphical_tools_user.rst b/src/python/doc/persistence_graphical_tools_user.rst
index f41a926b..80002db6 100644
--- a/src/python/doc/persistence_graphical_tools_user.rst
+++ b/src/python/doc/persistence_graphical_tools_user.rst
@@ -24,7 +24,7 @@ This function can display the persistence result as a barcode:
import gudhi
off_file = gudhi.__root_source_dir__ + '/data/points/tore3D_300.off'
- point_cloud = gudhi.read_off(off_file=off_file)
+ point_cloud = gudhi.read_points_from_off_file(off_file=off_file)
rips_complex = gudhi.RipsComplex(points=point_cloud, max_edge_length=0.7)
simplex_tree = rips_complex.create_simplex_tree(max_dimension=3)