summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-09-01 08:04:55 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2015-09-01 08:04:55 +0000
commitcdd296b1c849cde74835d4043b9c4ecfe0ab16c2 (patch)
treed86169df519234bbb223e9d4919bf53ead49968d
parent4b44247f14ddd84bf3e58ba53fe93a3e793f0ce4 (diff)
doc images size was not correct. bad cut in simplex_tree.h (assign_key was badly removed).
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/alphashapes@766 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: 05761f615e4518d7816c08121402980625409014
-rw-r--r--src/Alpha_complex/doc/alpha_complex_doc.pngbin64997 -> 46746 bytes
-rw-r--r--src/Alpha_complex/doc/alpha_complex_doc_135.pngbin120335 -> 127130 bytes
-rw-r--r--src/Alpha_complex/doc/alpha_complex_doc_alpha_shape.pngbin136492 -> 62759 bytes
-rw-r--r--src/Simplex_tree/include/gudhi/Simplex_tree.h6
4 files changed, 6 insertions, 0 deletions
diff --git a/src/Alpha_complex/doc/alpha_complex_doc.png b/src/Alpha_complex/doc/alpha_complex_doc.png
index 297c39ae..601ac051 100644
--- a/src/Alpha_complex/doc/alpha_complex_doc.png
+++ b/src/Alpha_complex/doc/alpha_complex_doc.png
Binary files differ
diff --git a/src/Alpha_complex/doc/alpha_complex_doc_135.png b/src/Alpha_complex/doc/alpha_complex_doc_135.png
index 8ce6a426..5dce5edd 100644
--- a/src/Alpha_complex/doc/alpha_complex_doc_135.png
+++ b/src/Alpha_complex/doc/alpha_complex_doc_135.png
Binary files differ
diff --git a/src/Alpha_complex/doc/alpha_complex_doc_alpha_shape.png b/src/Alpha_complex/doc/alpha_complex_doc_alpha_shape.png
index 87da0884..2d5f59a3 100644
--- a/src/Alpha_complex/doc/alpha_complex_doc_alpha_shape.png
+++ b/src/Alpha_complex/doc/alpha_complex_doc_alpha_shape.png
Binary files differ
diff --git a/src/Simplex_tree/include/gudhi/Simplex_tree.h b/src/Simplex_tree/include/gudhi/Simplex_tree.h
index bda7e72a..4a75852e 100644
--- a/src/Simplex_tree/include/gudhi/Simplex_tree.h
+++ b/src/Simplex_tree/include/gudhi/Simplex_tree.h
@@ -574,6 +574,12 @@ class Simplex_tree {
}
public:
+ /** \brief Assign a value 'key' to the key of the simplex
+ * represented by the Simplex_handle 'sh'. */
+ void assign_key(Simplex_handle sh, Simplex_key key) {
+ sh->second.assign_key(key);
+ }
+
/** Returns the two Simplex_handle corresponding to the endpoints of
* and edge. sh must point to a 1-dimensional simplex. This is an
* optimized version of the boundary computation. */