├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── READOTHER.md ├── floathacks ├── common.h ├── consts │ └── pow.h ├── geometric.h ├── hacks.h ├── others.h └── pow.h └── tests └── test.cpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/README.md -------------------------------------------------------------------------------- /READOTHER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/READOTHER.md -------------------------------------------------------------------------------- /floathacks/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/common.h -------------------------------------------------------------------------------- /floathacks/consts/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/consts/pow.h -------------------------------------------------------------------------------- /floathacks/geometric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/geometric.h -------------------------------------------------------------------------------- /floathacks/hacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/hacks.h -------------------------------------------------------------------------------- /floathacks/others.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/others.h -------------------------------------------------------------------------------- /floathacks/pow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/floathacks/pow.h -------------------------------------------------------------------------------- /tests/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leegao/float-hacks/HEAD/tests/test.cpp --------------------------------------------------------------------------------