Files
piphoto/coord.h

18 lines
227 B
C
Raw Normal View History

2017-08-06 19:39:11 +00:00
#pragma once
#include <cstdint>
#include <ostream>
struct Coord {
uint32_t x;
uint32_t y;
};
2017-08-07 06:19:12 +00:00
struct Coord3d {
uint32_t r;
uint32_t g;
uint32_t b;
};
2017-08-06 19:39:11 +00:00
std::ostream& operator<<(std::ostream& os, const Coord& coord);