18 lines
401 B
C
18 lines
401 B
C
|
|
||
|
#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:
|
||
|
|
||
|
vector<float> SideLength;
|
||
|
friend class AbstractionLayer_PoempelPosition;
|
||
|
};
|
||
|
|
||
|
|