├── .github ├── FUNDING.yml ├── pull_request_template.md └── workflows │ └── ci.yml ├── .gitignore ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── clippy.toml └── src ├── dim2 ├── impls.rs └── mod.rs ├── dim3 ├── angular_inertia.rs ├── impls.rs └── mod.rs ├── lib.rs └── math_ext.rs /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/README.md -------------------------------------------------------------------------------- /clippy.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/clippy.toml -------------------------------------------------------------------------------- /src/dim2/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/dim2/impls.rs -------------------------------------------------------------------------------- /src/dim2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/dim2/mod.rs -------------------------------------------------------------------------------- /src/dim3/angular_inertia.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/dim3/angular_inertia.rs -------------------------------------------------------------------------------- /src/dim3/impls.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/dim3/impls.rs -------------------------------------------------------------------------------- /src/dim3/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/dim3/mod.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/math_ext.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avianphysics/bevy_heavy/HEAD/src/math_ext.rs --------------------------------------------------------------------------------