obj models

This commit is contained in:
Lauri Räsänen 2022-10-02 22:03:50 +03:00
parent 4ab10fe790
commit 3838b5d7c6
14 changed files with 1337 additions and 109 deletions

24
Cargo.lock generated
View file

@ -531,6 +531,12 @@ version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
[[package]]
name = "fs_extra"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2022715d62ab30faffd124d40b76f4134a550a87792276512b18d63272333394"
[[package]]
name = "futures-core"
version = "0.3.24"
@ -575,6 +581,12 @@ dependencies = [
"weezl",
]
[[package]]
name = "glob"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b919933a397b79c37e33b77bb2aa3dc8eb6e165ad809e58ff75bc7db2e34574"
[[package]]
name = "glow"
version = "0.11.2"
@ -1286,9 +1298,12 @@ dependencies = [
"bytemuck",
"cgmath",
"env_logger",
"fs_extra",
"glob",
"image",
"log",
"pollster",
"tobj",
"wgpu",
"winit",
]
@ -1442,6 +1457,15 @@ dependencies = [
"weezl",
]
[[package]]
name = "tobj"
version = "3.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "deacee3abcc4fd8ff3f0f7c08d4583ab51753ed1d5a3acacd6d5773f640c27d6"
dependencies = [
"ahash",
]
[[package]]
name = "toml"
version = "0.5.9"