├── .gitignore ├── Cargo.toml ├── LICENSE ├── README.md └── src ├── core ├── collider.rs ├── dur_hitbox │ ├── mod.rs │ └── solvers.rs ├── events.rs ├── grid.rs └── mod.rs ├── float.rs ├── geom ├── card.rs ├── mod.rs ├── shape │ ├── mod.rs │ ├── normals.rs │ └── tests.rs └── vec.rs ├── index_rect.rs ├── lib.rs ├── tests.rs └── util.rs /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/core/collider.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/collider.rs -------------------------------------------------------------------------------- /src/core/dur_hitbox/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/dur_hitbox/mod.rs -------------------------------------------------------------------------------- /src/core/dur_hitbox/solvers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/dur_hitbox/solvers.rs -------------------------------------------------------------------------------- /src/core/events.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/events.rs -------------------------------------------------------------------------------- /src/core/grid.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/grid.rs -------------------------------------------------------------------------------- /src/core/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/core/mod.rs -------------------------------------------------------------------------------- /src/float.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/float.rs -------------------------------------------------------------------------------- /src/geom/card.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/card.rs -------------------------------------------------------------------------------- /src/geom/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/mod.rs -------------------------------------------------------------------------------- /src/geom/shape/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/shape/mod.rs -------------------------------------------------------------------------------- /src/geom/shape/normals.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/shape/normals.rs -------------------------------------------------------------------------------- /src/geom/shape/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/shape/tests.rs -------------------------------------------------------------------------------- /src/geom/vec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/geom/vec.rs -------------------------------------------------------------------------------- /src/index_rect.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/index_rect.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/tests.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/tests.rs -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SergiusIW/collider-rs/HEAD/src/util.rs --------------------------------------------------------------------------------