-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextractBack.h
More file actions
24 lines (19 loc) · 779 Bytes
/
extractBack.h
File metadata and controls
24 lines (19 loc) · 779 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef EXTRACTBACK_H
#define EXTRACTBACK_H
#include <algorithm>
#include "extract.h"
#include "color.h"
class CubeFace;
using namespace std;
class ExtractBack : public Extract {
public:
vector<Color> extractLeftFace(CubeFace* cubeface, bool clockwise) const;
vector<Color> extractRightFace(CubeFace* cubeface, bool clockwise) const;
vector<Color> extractTopFace(CubeFace* cubeface, bool clockwise) const;
vector<Color> extractBottomFace(CubeFace* cubeface, bool clockwise) const;
void setLeftFace(CubeFace* cubeface, vector<Color> colors) const;
void setRightFace(CubeFace* cubeface, vector<Color> colors) const;
void setTopFace(CubeFace* cubeface, vector<Color> colors) const;
void setBottomFace(CubeFace* cubeface, vector<Color> colors) const;
};
#endif