From 315c5de19385e4e9a45ed3dd2047772978487256 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 21 Sep 2008 18:58:06 +0000 Subject: [PATCH] Use @code...@endcode. git-svn-id: https://svn.dealii.org/trunk@16881 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-22/doc/results.dox | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/deal.II/examples/step-22/doc/results.dox b/deal.II/examples/step-22/doc/results.dox index c491ce8800..c1854abea1 100644 --- a/deal.II/examples/step-22/doc/results.dox +++ b/deal.II/examples/step-22/doc/results.dox @@ -786,7 +786,7 @@ for that. For example, by using the folllowing modification of the boundary values function - +@code template double BoundaryValues::value (const Point &p, @@ -801,10 +801,10 @@ BoundaryValues::value (const Point &p, return (p[0] < x_offset ? -1 : (p[0] > x_offset ? 1 : 0)); return 0; } - +@endcode and the following way to generate the mesh as the domain $[-2,2]\times[-2,2]\times[-1,0]$ - +@code std::vector subdivisions (dim, 1); subdivisions[0] = 4; subdivisions[1] = 4; @@ -820,7 +820,7 @@ $[-2,2]\times[-2,2]\times[-1,0]$ subdivisions, bottom_left, top_right); - +@endcode then we get images where the the fault line is curved: -- 2.39.5