summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Glisse <marc.glisse@inria.fr>2022-11-11 18:00:42 +0100
committerMarc Glisse <marc.glisse@inria.fr>2022-11-11 18:00:42 +0100
commit4118bcb622c624130e768d9116a7e147a5e45c68 (patch)
treee01c75adb050b461dc06fcac218df5cd1bb49311
parentad1123c3c7cfddc1c15e9933b96af08ef3398b3c (diff)
Link to OFF format
-rw-r--r--src/python/gudhi/off_utils.pyx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/python/gudhi/off_utils.pyx b/src/python/gudhi/off_utils.pyx
index 155575d5..a8142791 100644
--- a/src/python/gudhi/off_utils.pyx
+++ b/src/python/gudhi/off_utils.pyx
@@ -26,7 +26,7 @@ cdef extern from "Off_reader_interface.h" namespace "Gudhi":
vector[vector[double]] read_points_from_OFF_file(string off_file)
def read_points_from_off_file(off_file=''):
- """Read points from OFF file.
+ """Read points from an `OFF file <fileformats.html#off-file-format>`_.
:param off_file: An OFF file style name.
:type off_file: string
@@ -43,7 +43,7 @@ def read_points_from_off_file(off_file=''):
@cython.embedsignature(True)
def write_points_to_off_file(fname, points):
- """Write points to an OFF file.
+ """Write points to an `OFF file <fileformats.html#off-file-format>`_.
A simple wrapper for `numpy.savetxt`.