add bounding box
This commit is contained in:
parent
2e24f0314b
commit
7c383dc245
12 changed files with 153 additions and 4 deletions
10
src/bounding_box.h
Normal file
10
src/bounding_box.h
Normal file
|
@ -0,0 +1,10 @@
|
|||
#pragma once
|
||||
|
||||
#include <cstdint>
|
||||
|
||||
struct BoundingBox {
|
||||
uint32_t left;
|
||||
uint32_t top;
|
||||
uint32_t right;
|
||||
uint32_t bottom;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue