From 12b0b74d43b7d93eee82ae6fa3dced499cd8a1f6 Mon Sep 17 00:00:00 2001 From: KT Date: Tue, 19 Oct 2021 14:03:28 -0500 Subject: Publish a4 --- dev/a4-dance/dance_floor.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 dev/a4-dance/dance_floor.h (limited to 'dev/a4-dance/dance_floor.h') diff --git a/dev/a4-dance/dance_floor.h b/dev/a4-dance/dance_floor.h new file mode 100644 index 0000000..8d992f4 --- /dev/null +++ b/dev/a4-dance/dance_floor.h @@ -0,0 +1,28 @@ +#ifndef DANCE_FLOOR_H_ +#define DANCE_FLOOR_H_ + +#include + +#include + +class DanceFloor { +public: + DanceFloor(float s, int c); + + void Draw(const Matrix4 &modelMatrix, const Matrix4 &viewMatrix, const Matrix4 &projMatrix); + + Color tile_color(int index); + +private: + + float tileSize_; + int tileCount_; + + std::vector< std::vector > colors_; + + Texture2D tex_; + Mesh floorMesh_; +}; + + +#endif -- cgit v1.2.3