Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct edge and face denotation for 1d and 2d refshape docs #1121

Merged
merged 1 commit into from
Jan 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 25 additions & 12 deletions src/docs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ Vertex numbers: | Vertex coordinates:
1-------2 | v1: 𝛏 = (-1.0,)
--> ξ₁ | v2: 𝛏 = ( 1.0,)
----------------+--------------------
Face numbers: | Face identifiers:
1-------2 | f1: (v1,)
| f2: (v2,)
Edge numbers: | Edge identifiers:
+---1---+ | e1: (v1, v2)
----------------+--------------------
```
"""
Expand All @@ -34,13 +33,20 @@ Vertex numbers: | Vertex coordinates:
| 3-------1 |
+--> ξ₁ |
----------------+--------------------
Face numbers: | Face identifiers:
Edge numbers: | Edge identifiers:
+ |
| \ | f1: (v1, v2)
2 1 | f2: (v2, v3)
| \ | f3: (v3, v1)
| \ | e1: (v1, v2)
2 1 | e2: (v2, v3)
| \ | e3: (v3, v1)
+---3---+ |
----------------+--------------------
Face numbers: | Face identifiers:
+ |
| \ |
| \ | f1: (v1, v2, v3)
| 1 \ |
+-------+ |
----------------+--------------------
```
"""
RefTriangle
Expand All @@ -59,13 +65,20 @@ Vertex numbers: | Vertex coordinates:
| 1-------2 | v4: 𝛏 = (-1.0, 1.0)
+--> ξ₁ |
----------------+---------------------
Face numbers: | Face identifiers:
+---3---+ | f1: (v1, v2)
| | | f2: (v2, v3)
4 2 | f3: (v3, v4)
| | | f4: (v4, v1)
Edge numbers: | Edge identifiers:
+---3---+ | e1: (v1, v2)
| | | e2: (v2, v3)
4 2 | e3: (v3, v4)
| | | e4: (v4, v1)
+---1---+ |
----------------+---------------------
Face numbers: | Face identifiers:
+-------+ |
| | |
| 1 | | f1: (v1, v2, v3, v4)
| | |
+-------+ |
----------------+---------------------
```
"""
RefQuadrilateral
Expand Down
Loading