Generates subdivided and truncated icosahedron spheres in Rust.

Cargo.toml 688B

12345678910111213141516171819202122232425262728293031
  1. [package]
  2. name = "icosahedron"
  3. version = "0.1.1"
  4. authors = ["Tyler Hallada <tyler@hallada.net>"]
  5. edition = "2018"
  6. exclude = [
  7. "output/*",
  8. ]
  9. description = "Generates subdivided and truncated icosahedron spheres"
  10. repository = "https://github.com/thallada/icosahedron"
  11. readme = "README.md"
  12. keywords = ["meshes", "3d", "shapes", "icosahedron", "polyhedra"]
  13. categories = ["graphics"]
  14. license = "MIT"
  15. [lib]
  16. name = "icosahedron"
  17. path = "src/lib.rs"
  18. [[bin]]
  19. name = "icosahedron"
  20. path = "src/bin.rs"
  21. [dependencies]
  22. byteorder = "1.3.2"
  23. clap = "2.33.0"
  24. cgmath = { version = "0.17.0", features = ["serde"] }
  25. rand = "0.6.5"
  26. serde = { version = "1.0", features = ["derive"] }
  27. serde_json = "1.0"