-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWeightArrayGenerator.h
33 lines (24 loc) · 1.09 KB
/
WeightArrayGenerator.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef WEIGHTARRAYGENERATOR_H
#define WEIGHTARRAYGENERATOR_H
#include <array>
#include "CustomScheme.h"
#include "MeshWalkHandler.h"
class WeightArrayGenerator
{
public:
static WeightArrayGenerator& getInstance() {
static WeightArrayGenerator instance;
return instance;
}
WeightArrayGenerator(WeightArrayGenerator const&) = delete;
void operator=(WeightArrayGenerator const&) = delete;
std::array<float, 16> generateWeights(CustomScheme custom_scheme, MeshWalkHandler::OddsType odds_type);
std::vector<float> generateEvenWeights(CustomScheme custom_scheme, int neighbour_num);
private:
WeightArrayGenerator();
std::array<float, 16> generateTriWeights(CustomScheme custom_scheme);
std::array<float, 16> generateQuadWeights(CustomScheme custom_scheme, MeshWalkHandler::OddsType odds_type);
std::array<float, 16> generateQuadOneWeights(CustomScheme custom_scheme, MeshWalkHandler::OddsType odds_type);
std::array<float, 16> generateQuadTwoWeights(CustomScheme custom_scheme, MeshWalkHandler::OddsType odds_type);
};
#endif // WEIGHTARRAYGENERATOR_H