|
2 | 2 | "Shortcuts for the tags of cartesian discrete models." |
3 | 3 | module CartesianTags |
4 | 4 |
|
5 | | -"Tags indicating points, edges and faces at X0." |
| 5 | +"Tags indicating points, edges and faces at plane X0." |
6 | 6 | const faceX0 = [1, 3, 5, 7, 13, 15, 17, 19, 25] |
7 | 7 |
|
8 | | -"Tags indicating points, edges and faces at X1." |
| 8 | +"Tags indicating points, edges and faces at plane X1." |
9 | 9 | const faceX1 = [2, 4, 6, 8, 14, 16, 18, 20, 26] |
10 | 10 |
|
11 | | -"Tags indicating points, edges and faces at Y0." |
| 11 | +"Tags indicating points, edges and faces at plane Y0." |
12 | 12 | const faceY0 = [1, 2, 5, 6, 9, 11, 17, 18, 23] |
13 | 13 |
|
14 | | -"Tags indicating points, edges and faces at Y1." |
| 14 | +"Tags indicating points, edges and faces at plane Y1." |
15 | 15 | const faceY1 = [3, 4, 7, 8, 10, 12, 19, 20, 24] |
16 | 16 |
|
17 | | -"Tags indicating points, edges and faces at Z0." |
| 17 | +"Tags indicating points, edges and faces at plane Z0." |
18 | 18 | const faceZ0 = [1, 2, 3, 4, 9, 10, 13, 14, 21] |
19 | 19 |
|
20 | | -"Tags indicating points, edges and faces at Z1." |
| 20 | +"Tags indicating points, edges and faces at plane Z1." |
21 | 21 | const faceZ1 = [5, 6, 7, 8, 11, 12, 15, 16, 22] |
22 | 22 |
|
23 | 23 |
|
24 | | -"Tag indicating the line at X, Y0, Z0." |
| 24 | +"Tag indicating the edge at X, Y0, Z0." |
25 | 25 | const edgeX00 = [9] |
26 | 26 |
|
27 | | -"Tag indicating the line at X, Y1, Z0." |
| 27 | +"Tag indicating the edge at X, Y1, Z0." |
28 | 28 | const edgeX10 = [10] |
29 | 29 |
|
30 | | -"Tag indicating the line at X, Y0, Z1." |
| 30 | +"Tag indicating the edge at X, Y0, Z1." |
31 | 31 | const edgeX01 = [11] |
32 | 32 |
|
33 | | -"Tag indicating the line at X, Y1, Z1." |
| 33 | +"Tag indicating the edge at X, Y1, Z1." |
34 | 34 | const edgeX11 = [12] |
35 | 35 |
|
36 | | -"Tag indicating the line at X0, Y, Z0." |
| 36 | +"Tag indicating the edge at X0, Y, Z0." |
37 | 37 | const edge0Y0 = [13] |
38 | 38 |
|
39 | | -"Tag indicating the line at X1, Y, Z0." |
| 39 | +"Tag indicating the edge at X1, Y, Z0." |
40 | 40 | const edge1Y0 = [14] |
41 | 41 |
|
42 | | -"Tag indicating the line at X0, Y, Z1." |
| 42 | +"Tag indicating the edge at X0, Y, Z1." |
43 | 43 | const edge0Y1 = [15] |
44 | 44 |
|
45 | | -"Tag indicating the line at X1, Y, Z1." |
| 45 | +"Tag indicating the edge at X1, Y, Z1." |
46 | 46 | const edge1Y1 = [16] |
47 | 47 |
|
48 | | -"Tag indicating the line at X0, Y0, Z." |
| 48 | +"Tag indicating the edge at X0, Y0, Z." |
49 | 49 | const edge00Z = [17] |
50 | 50 |
|
51 | | -"Tag indicating the line at X1, Y0, Z." |
| 51 | +"Tag indicating the edge at X1, Y0, Z." |
52 | 52 | const edge10Z = [18] |
53 | 53 |
|
54 | | -"Tag indicating the line at X0, Y1, Z." |
| 54 | +"Tag indicating the edge at X0, Y1, Z." |
55 | 55 | const edge01Z = [19] |
56 | 56 |
|
57 | | -"Tag indicating the line at X1, Y1, Z." |
| 57 | +"Tag indicating the edge at X1, Y1, Z." |
58 | 58 | const edge11Z = [20] |
59 | 59 |
|
| 60 | + |
60 | 61 | "Tag indicating the point at corner X0, Y0, Z0." |
61 | 62 | const corner000 = [1] |
62 | 63 |
|
|
0 commit comments