summaryrefslogtreecommitdiff
path: root/src/python/gudhi/off_reader.pyx
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/gudhi/off_reader.pyx
parentf61d7c2c9f1148ee1bc749d1f7007f5c01f4ffb4 (diff)
Fix #194 : Rename read_off as it only read points from OFF file
Diffstat (limited to 'src/python/gudhi/off_reader.pyx')
-rw-r--r--src/python/gudhi/off_reader.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/python/gudhi/off_reader.pyx b/src/python/gudhi/off_reader.pyx
index 225e981c..ee369976 100644
--- a/src/python/gudhi/off_reader.pyx
+++ b/src/python/gudhi/off_reader.pyx
@@ -19,7 +19,7 @@ __license__ = "MIT"
cdef extern from "Off_reader_interface.h" namespace "Gudhi":
vector[vector[double]] read_points_from_OFF_file(string off_file)
-def read_off(off_file=''):
+def read_points_from_off_file(off_file=''):
"""Read points from OFF file.
:param off_file: An OFF file style name.