Allow maximum number of particles to be configured.

This commit is contained in:
2018-04-09 16:43:40 +02:00
parent 1c942a7de7
commit 0145391450
4 changed files with 29 additions and 2 deletions

View File

@@ -14,8 +14,7 @@
using namespace fmri;
using namespace std;
// Maximum number of interactions shown
static constexpr size_t INTERACTION_LIMIT = 10000;
std::size_t fmri::INTERACTION_LIMIT = 10000;
typedef vector<pair<float, pair<size_t, size_t>>> EntryList;