summaryrefslogtreecommitdiff
path: root/src/cython/example
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-05-17 08:43:47 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-05-17 08:43:47 +0000
commit702d71119d8aaf3e36d3a91c7387ad5a3288a400 (patch)
tree70d7cc556bdc4aba677f7325745e21771ee0a1aa /src/cython/example
parent1260fc74aeb7c4f82af913388dda0cf0d54dba07 (diff)
Alpha complex get_point method and its example
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/ST_cythonize@1178 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 18a93331935ddf35fd15cddc0659c51e494537a4
Diffstat (limited to 'src/cython/example')
-rwxr-xr-xsrc/cython/example/Alpha_complex_example.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/cython/example/Alpha_complex_example.py b/src/cython/example/Alpha_complex_example.py
index 5403fc17..da55bfd4 100755
--- a/src/cython/example/Alpha_complex_example.py
+++ b/src/cython/example/Alpha_complex_example.py
@@ -36,5 +36,7 @@ print("filtered_tree=", alpha_complex.get_filtered_tree())
print("star([0])=", alpha_complex.get_star_tree([0]))
print("coface([0],1)=", alpha_complex.get_coface_tree([0], 1))
+print("point[0]=", alpha_complex.get_point(0))
+print("point[5]=", alpha_complex.get_point(5))
print("#######################################################################")