summaryrefslogtreecommitdiff
path: root/src/Tangential_complex
diff options
context:
space:
mode:
authorvrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-14 16:00:37 +0000
committervrouvrea <vrouvrea@636b058d-ea47-450e-bf9e-a15bfbe3eedb>2016-12-14 16:00:37 +0000
commitb1e6e79715f68498c04a88e7d2237ec478078d11 (patch)
tree933ed3277a42bab035ca96705af812136b0bf52c /src/Tangential_complex
parent42e91253237a19af47c9a721a7f119dccc89113a (diff)
Points perturb
git-svn-id: svn+ssh://scm.gforge.inria.fr/svnroot/gudhi/branches/tangential_test@1872 636b058d-ea47-450e-bf9e-a15bfbe3eedb Former-commit-id: f194dac5b999169fdf29fbb9223f0ee9db9c12ba
Diffstat (limited to 'src/Tangential_complex')
-rw-r--r--src/Tangential_complex/example/example.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Tangential_complex/example/example.cpp b/src/Tangential_complex/example/example.cpp
index a503091c..b7eb542b 100644
--- a/src/Tangential_complex/example/example.cpp
+++ b/src/Tangential_complex/example/example.cpp
@@ -25,9 +25,9 @@ int main(void) {
// [[0, 0], [1, 0], [0, 1], [1, 1]]
std::vector<double> point = {0.0, 0.0};
points.push_back(Point(point.size(), point.begin(), point.end()));
- point = {1.0, 0.0};
+ point = {1.1, 0.0};
points.push_back(Point(point.size(), point.begin(), point.end()));
- point = {0.0, 1.0};
+ point = {0.2, 1.3};
points.push_back(Point(point.size(), point.begin(), point.end()));
point = {1.0, 1.0};
points.push_back(Point(point.size(), point.begin(), point.end()));