├── .gitignore ├── .vscode └── settings.json ├── Cargo.toml ├── README.md ├── demo.png ├── src ├── lib.rs ├── mathtypes.rs ├── mods.rs ├── ops.rs ├── primitives.rs └── util.rs └── tests └── test_backends.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | **/*.rs.bk 3 | Cargo.lock 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/Cargo.toml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/README.md -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/demo.png -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/mathtypes.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/mathtypes.rs -------------------------------------------------------------------------------- /src/mods.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/mods.rs -------------------------------------------------------------------------------- /src/ops.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/ops.rs -------------------------------------------------------------------------------- /src/primitives.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/primitives.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/src/util.rs -------------------------------------------------------------------------------- /tests/test_backends.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fu5ha/sdfu/HEAD/tests/test_backends.rs --------------------------------------------------------------------------------