code / tomo

Lines41.3K C23.7K Markdown9.7K YAML5.0K Tomo2.3K
7 others 763
Python231 Shell230 make212 INI47 Text21 SVG16 Lua6
(13 lines)
1 // Type infos and methods for Nums (floating point)
3 #pragma once
5 #define N64(n) ((double)(n))
6 #define OptionalNum_t double
7 #define NUMX_H__BITS 64
8 #include "numX.h"
10 #define N32(n) ((float)(n))
11 #define OptionalNum32_t float
12 #define NUMX_H__BITS 32
13 #include "numX.h"