aboutsummaryrefslogtreecommitdiffstats
path: root/dev/a4-dance/dance_floor.h
diff options
context:
space:
mode:
authorKT <tran0563@umn.edu>2021-09-06 19:07:33 -0500
committerKT <tran0563@umn.edu>2021-09-06 19:07:33 -0500
commitcccd3186305915d92b1751dc616979d64116a4aa (patch)
tree5dd4834daef547cd45fc0b643f44a10b581de0ad /dev/a4-dance/dance_floor.h
parentAdded missing images for the A6 worksheet (diff)
downloadcsci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.gz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.bz2
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.lz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.xz
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.tar.zst
csci4611-cccd3186305915d92b1751dc616979d64116a4aa.zip
Upload a1
Diffstat (limited to 'dev/a4-dance/dance_floor.h')
-rw-r--r--dev/a4-dance/dance_floor.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev/a4-dance/dance_floor.h b/dev/a4-dance/dance_floor.h
deleted file mode 100644
index 8d992f4..0000000
--- a/dev/a4-dance/dance_floor.h
+++ /dev/null
@@ -1,28 +0,0 @@
-#ifndef DANCE_FLOOR_H_
-#define DANCE_FLOOR_H_
-
-#include <mingfx.h>
-
-#include <vector>
-
-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<Color> > colors_;
-
- Texture2D tex_;
- Mesh floorMesh_;
-};
-
-
-#endif