From 10960eab8cc59150473f40a4788d3c185d1efd6b Mon Sep 17 00:00:00 2001 From: Luca Heltai Date: Thu, 15 Jan 2015 17:45:45 +0100 Subject: [PATCH] Boundary->Manifold in step-16. --- examples/step-16/step-16.cc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/examples/step-16/step-16.cc b/examples/step-16/step-16.cc index fe9a400750..39b4db2fd5 100644 --- a/examples/step-16/step-16.cc +++ b/examples/step-16/step-16.cc @@ -40,7 +40,7 @@ #include #include #include -#include +#include #include #include @@ -627,8 +627,9 @@ namespace Step16 { GridGenerator::hyper_ball (triangulation); - static const HyperBallBoundary boundary; - triangulation.set_boundary (0, boundary); + static const SphericalManifold boundary; + triangulation.set_all_manifold_ids_on_boundary(0); + triangulation.set_manifold (0, boundary); triangulation.refine_global (1); } -- 2.39.5