Skip to content

Commit

Permalink
Fix number of points in polygon mesh
Browse files Browse the repository at this point in the history
  • Loading branch information
bennibolm committed Feb 21, 2024
1 parent 3a5c3a0 commit b980b2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Smesh.jl
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function build_polygon_mesh(data_points, triangulation_vertices; mesh_type=:stan

npt_voronoi, nve_voronoi, nelem_voronoi = array_sizes

voronoi_vertices_coordinates = Matrix{Cdouble}(undef, 2, nve_voronoi)
voronoi_vertices_coordinates = Matrix{Cdouble}(undef, 2, npt_voronoi)
voronoi_vertices = Array{Cint}(undef, nve_voronoi)
voronoi_vertices_interval = Matrix{Cint}(undef, 2, nelem_voronoi)

Expand Down

0 comments on commit b980b2b

Please sign in to comment.