]>
git.bts.cx Git - benzene.git/blob - src/bz/types/point.h
1 #ifndef BZ_TYPES_POINT_H
2 #define BZ_TYPES_POINT_H
12 typedef struct BZPoint BZPoint
;
14 static inline BZPoint
bzPointMake(float x
, float y
) {
15 return (BZPoint
){ .x
= x
, .y
= y
};
18 //#define bzPointMake(x, y) ((BZPoint){ .x = x, .y = y })