├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .vscode ├── c_cpp_properties.json └── tasks.json ├── LICENSE ├── README.md ├── example ├── example.collection ├── example.go ├── example.gui ├── example.gui_script └── example.script ├── game.project ├── input └── game.input_binding ├── manifests └── web │ └── template.html └── xmath ├── api └── xMath.script_api ├── ext.manifest └── src └── xMath.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/README.md -------------------------------------------------------------------------------- /example/example.collection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/example/example.collection -------------------------------------------------------------------------------- /example/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/example/example.go -------------------------------------------------------------------------------- /example/example.gui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/example/example.gui -------------------------------------------------------------------------------- /example/example.gui_script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/example/example.gui_script -------------------------------------------------------------------------------- /example/example.script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/example/example.script -------------------------------------------------------------------------------- /game.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/game.project -------------------------------------------------------------------------------- /input/game.input_binding: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/input/game.input_binding -------------------------------------------------------------------------------- /manifests/web/template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/manifests/web/template.html -------------------------------------------------------------------------------- /xmath/api/xMath.script_api: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/xmath/api/xMath.script_api -------------------------------------------------------------------------------- /xmath/ext.manifest: -------------------------------------------------------------------------------- 1 | name: "xMath" 2 | -------------------------------------------------------------------------------- /xmath/src/xMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thejustinwalsh/defold-xmath/HEAD/xmath/src/xMath.cpp --------------------------------------------------------------------------------