From a8b78cfbf83dd81415e493affbc56eeca2736289 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9rome=20Eertmans?= Date: Tue, 5 Dec 2023 14:19:14 +0100 Subject: [PATCH] fix(docs): correct heading level MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Seems like my PR #214 introduced a problem where the heading level is not correct, which renders wrongly when docs are compiled. Signed-off-by: Jérome Eertmans fix(docs): link rendering --- examples/Sionna_Ray_Tracing_Diffraction.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/Sionna_Ray_Tracing_Diffraction.ipynb b/examples/Sionna_Ray_Tracing_Diffraction.ipynb index 965a89de..73c71e89 100644 --- a/examples/Sionna_Ray_Tracing_Diffraction.ipynb +++ b/examples/Sionna_Ray_Tracing_Diffraction.ipynb @@ -98,13 +98,13 @@ "id": "318a9c54-4bd1-4bb5-b615-6ab2d8143b21", "metadata": {}, "source": [ - "# Wedge vs Edge\n", + "## Wedge vs Edge\n", "\n", "First, it is important to know the difference between a *wedge* and an *edge*, and why we distinguish between them.\n", "\n", "Sionna defines a *wedge* as the line segment between two primitives, i.e., the common segment of two triangles. For example, a cubic building would have 12 wedges.\n", "\n", - "For primitives that have one or more line segments that are not shared with another primitive, Sionna refers to such line segments as *edges*. See [`sionna.rt.scene.floor_wall`](https://nvlabs.github.io/sionna/api/rt.html#sionna.rt.scene.floor_wall) for an example scene.\n", + "For primitives that have one or more line segments that are not shared with another primitive, Sionna refers to such line segments as *edges*. See [sionna.rt.scene.floor_wall](https://nvlabs.github.io/sionna/api/rt.html#sionna.rt.scene.floor_wall) for an example scene.\n", "\n", "By default, Sionna does not simulate diffraction on edges (`edge_diffraction=False`), to avoid problems such as diffraction on the exterior edges of the ground surface (modelled as a rectangular plane)." ]