diff options
author | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2020-03-16 18:33:27 -0400 |
---|---|---|
committer | Jaron Kent-Dobias <jaron@kent-dobias.com> | 2020-03-16 18:33:27 -0400 |
commit | 351e26190212205b0cbbc748ef8362a09ef9267f (patch) | |
tree | 183d119d16fa9d11497706b8fe612ab9a0aecdd1 /lib/src | |
parent | 2faf0e4598c7c046d58107d23145f95db334200c (diff) | |
download | fuse_networks-351e26190212205b0cbbc748ef8362a09ef9267f.tar.gz fuse_networks-351e26190212205b0cbbc748ef8362a09ef9267f.tar.bz2 fuse_networks-351e26190212205b0cbbc748ef8362a09ef9267f.zip |
Updated voronoi.
Diffstat (limited to 'lib/src')
-rw-r--r-- | lib/src/graph.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/src/graph.cpp b/lib/src/graph.cpp index c75d466..a84084f 100644 --- a/lib/src/graph.cpp +++ b/lib/src/graph.cpp @@ -233,7 +233,7 @@ void graph::helper(unsigned nv, std::mt19937& rng) { points[9 * i + 8] = {v.r.x + L.x, v.r.y + L.y}; } - jcv_diagram_generate(9 * nv, points.data(), &bounds, &diagram); + jcv_diagram_generate(9 * nv, points.data(), &bounds, 0, &diagram); const jcv_site* sites = jcv_diagram_get_sites(&diagram); |