File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ Makie = "ee78f7c6-11fb-53f2-987a-cfe4a2b5a57a"
14
14
[compat ]
15
15
FileIO = " 1"
16
16
FillArrays = " 1"
17
- GLMakie = " 0.10 "
18
- GeometryBasics = " 0.3, 0.4 "
17
+ GLMakie = " 0.11 "
18
+ GeometryBasics = " 0.5 "
19
19
Gridap = " 0.16, 0.17,0.18"
20
- Makie = " 0.21 "
20
+ Makie = " 0.22 "
21
21
julia = " 1.6"
22
22
23
23
[extras ]
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ function to_mesh(grid::UnstructuredGrid)
35
35
Tc = eltype (eltype (cns))
36
36
Dc = num_cell_dims (grid)
37
37
fs = collect (lazy_map (GeometryBasics. NgonFace{Dc+ 1 ,Tc},cns))
38
- GeometryBasics. Mesh (GeometryBasics . connect ( ps,fs) )
38
+ GeometryBasics. Mesh (ps,fs)
39
39
end
40
40
41
41
# Create discontinuous grid with the corresponding handling of nodal or cell fields.
@@ -64,7 +64,7 @@ function to_dg_mesh(grid::UnstructuredGrid)
64
64
cns[cell] = cn
65
65
end
66
66
fs = lazy_map (GeometryBasics. NgonFace{Dc+ 1 ,Tc}, cns) |> collect
67
- GeometryBasics. connect (ps, fs) |> GeometryBasics . Mesh
67
+ GeometryBasics. Mesh (ps,fs)
68
68
end
69
69
70
70
function to_dg_node_values (grid:: Grid , node_value:: Vector )
You can’t perform that action at this time.
0 commit comments