From af825e11df39d9e60d854bd039c5d9a249976cb9 Mon Sep 17 00:00:00 2001 From: Jiri Vlasak Date: Mon, 9 Nov 2020 13:10:27 +0100 Subject: [PATCH] Use uniform circle sampling --- src/uniform-sampling-template.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/uniform-sampling-template.cc b/src/uniform-sampling-template.cc index af3100c..d823919 100644 --- a/src/uniform-sampling-template.cc +++ b/src/uniform-sampling-template.cc @@ -55,7 +55,8 @@ int main() epp.json(jvi); epp.init(); - epp.sample_dist_type(1); + epp.sample_dist_type(2); + // TODO the following has no meaning for uniform circle sampling epp.set_sample(-50, 50, -50, 50, 0, 2 * M_PI); while (epp.next()) {} -- 2.39.2