input and handler possibly fixed and point
This commit is contained in:
parent
d6281e8eac
commit
3fa74e8f9e
7 changed files with 288 additions and 0 deletions
14
include/arc/math/point.h
Normal file
14
include/arc/math/point.h
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#ifndef ARC_MATH_POINT_H_
|
||||
#define ARC_MATH_POINT_H_
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
typedef struct ARC_Point {
|
||||
int32_t x, y;
|
||||
} ARC_Point;
|
||||
|
||||
typedef struct ARC_UPoint {
|
||||
uint32_t x, y;
|
||||
} ARC_UPoint;
|
||||
|
||||
#endif // ARC_MATH_POINT_H_
|
||||
Loading…
Add table
Add a link
Reference in a new issue