2018-01-20 16:02:44 +01:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <vector>
|
|
|
|
using namespace std;
|
|
|
|
class AbstractionLayer_PoempelPosition_Properties
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
AbstractionLayer_PoempelPosition_Properties():SideLength({0,0,0,0,0,0,0,0}){}
|
|
|
|
float getSideLength(int i){if (i<8 && i>=0)return SideLength[i]; else return -1;};
|
|
|
|
void shift(int i);
|
|
|
|
private:
|
|
|
|
|
2018-01-22 19:20:25 +01:00
|
|
|
vector<double> SideLength;
|
2018-01-20 16:02:44 +01:00
|
|
|
friend class AbstractionLayer_PoempelPosition;
|
2018-01-22 19:20:25 +01:00
|
|
|
friend class AbstractionLayer_1;
|
2018-01-20 16:02:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|