├── .gitignore ├── CHANGELOG.md ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-CC0 ├── LICENSE-MIT ├── README.md ├── examples ├── deferred.rs ├── moving_cut.rs ├── simple.rs ├── simple2.rs ├── simple_deferred.rs ├── simple_screenspace.rs └── two_cuts.rs ├── src ├── double_plane_cut.wgsl ├── lib.rs ├── nplane.rs ├── nplane_cut.wgsl └── plane_cut.wgsl └── tests └── version-numbers.rs /.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-CC0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/LICENSE-CC0 -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/README.md -------------------------------------------------------------------------------- /examples/deferred.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/deferred.rs -------------------------------------------------------------------------------- /examples/moving_cut.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/moving_cut.rs -------------------------------------------------------------------------------- /examples/simple.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/simple.rs -------------------------------------------------------------------------------- /examples/simple2.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/simple2.rs -------------------------------------------------------------------------------- /examples/simple_deferred.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/simple_deferred.rs -------------------------------------------------------------------------------- /examples/simple_screenspace.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/simple_screenspace.rs -------------------------------------------------------------------------------- /examples/two_cuts.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/examples/two_cuts.rs -------------------------------------------------------------------------------- /src/double_plane_cut.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/src/double_plane_cut.wgsl -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/nplane.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/src/nplane.rs -------------------------------------------------------------------------------- /src/nplane_cut.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/src/nplane_cut.wgsl -------------------------------------------------------------------------------- /src/plane_cut.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/src/plane_cut.wgsl -------------------------------------------------------------------------------- /tests/version-numbers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanecelis/bevy_plane_cut/HEAD/tests/version-numbers.rs --------------------------------------------------------------------------------