Move Coord3d

This commit is contained in:
Ian Gulliver
2017-08-07 06:19:12 +00:00
parent 100c44fe4e
commit e58083d989
2 changed files with 7 additions and 6 deletions

7
lut.h
View File

@@ -1,12 +1,7 @@
#pragma once
#include "color.h"
struct Coord3d {
uint32_t r;
uint32_t g;
uint32_t b;
};
#include "coord.h"
template <uint32_t R, uint32_t G, uint32_t B>
class Lut3d : public std::array<std::array<std::array<Color, B>, G>, R> {