Add an initial implementation of the chaos game

This commit is contained in:
2026-06-20 10:05:04 -04:00
parent bb4e0aa669
commit 1709336062
4 changed files with 67 additions and 4 deletions
Generated
+17
View File
@@ -155,6 +155,7 @@ version = "0.1.0"
dependencies = [
"bytemuck",
"glam",
"rand",
"spirv-std",
]
@@ -210,6 +211,7 @@ version = "0.33.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "898f5a568a84989b6c0f8caa50a93074b97dbdc58fc6d9543157bb4562758933"
dependencies = [
"bytemuck",
"libm",
]
@@ -435,6 +437,21 @@ dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d2e8e8bcc7961af1fdac401278c6a831614941f6164ee3bf4ce61b7edb162207"
dependencies = [
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "63b8176103e19a2643978565ca18b50549f6101881c443590420e4dc998a3c69"
[[package]]
name = "raw-string"
version = "0.3.5"