diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 15:37:31 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-21 15:37:31 +0200 |
commit | e8601b35b601b0ee1486dfaa12385e71b7f2b300 (patch) | |
tree | 244fc97a12ee17e28e6fc407988508bfbc06d89a /Rectangle.h | |
parent | fe8f7273f0efdfe319a0d3e3b2fc2847992745af (diff) |
WIP quadtree visualization scaffolding
Diffstat (limited to 'Rectangle.h')
-rw-r--r-- | Rectangle.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Rectangle.h b/Rectangle.h index a3d0a0d..a8d523b 100644 --- a/Rectangle.h +++ b/Rectangle.h @@ -1,9 +1,9 @@ #pragma once typedef struct { - unsigned int x; - unsigned int y; - unsigned int width; - unsigned int height; + float x; + float y; + float width; + float height; } Rectangle; |