summaryrefslogtreecommitdiff
path: root/src/Alpha_complex/example
diff options
context:
space:
mode:
authorROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-11-04 10:51:28 +0100
committerROUVREAU Vincent <vincent.rouvreau@inria.fr>2019-11-04 10:51:28 +0100
commitf670d1e58ff94fd724c41ff34871b57f6ac95cc0 (patch)
treefd9d675fdf3933b7cee2344679ab38be59af26cd /src/Alpha_complex/example
parentf6a78c1b7ea70b71fdb96f2fc17c44700e4b980a (diff)
Use Point_3 instead of Bare_point_3 in non-weighted cases
Diffstat (limited to 'src/Alpha_complex/example')
-rw-r--r--src/Alpha_complex/example/Alpha_complex_3d_from_points.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Alpha_complex/example/Alpha_complex_3d_from_points.cpp b/src/Alpha_complex/example/Alpha_complex_3d_from_points.cpp
index 7bd35cc6..0e359a27 100644
--- a/src/Alpha_complex/example/Alpha_complex_3d_from_points.cpp
+++ b/src/Alpha_complex/example/Alpha_complex_3d_from_points.cpp
@@ -8,7 +8,7 @@
#include <limits> // for numeric limits
using Alpha_complex_3d = Gudhi::alpha_complex::Alpha_complex_3d<Gudhi::alpha_complex::complexity::SAFE, false, false>;
-using Point = Alpha_complex_3d::Bare_point_3;
+using Point = Alpha_complex_3d::Point_3;
using Vector_of_points = std::vector<Point>;
int main(int argc, char **argv) {