{"id":17874440,"url":"https://github.com/fl03/smplx","last_synced_at":"2026-02-10T09:02:53.977Z","repository":{"id":254605691,"uuid":"833197968","full_name":"FL03/smplx","owner":"FL03","description":"This crate is designed to be a topological toolkit for working with simplices in Rust.","archived":false,"fork":false,"pushed_at":"2025-02-23T22:51:08.000Z","size":82,"stargazers_count":0,"open_issues_count":4,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-18T09:06:00.072Z","etag":null,"topics":["crates-io","mathematics","rust-lang","simplex","topology"],"latest_commit_sha":null,"homepage":"https://crates.io/crates/smplx","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/FL03.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-07-24T14:45:41.000Z","updated_at":"2025-02-23T02:04:40.000Z","dependencies_parsed_at":"2024-10-28T11:38:03.806Z","dependency_job_id":"19b96d58-4384-460b-b9bf-2da209d8e446","html_url":"https://github.com/FL03/smplx","commit_stats":null,"previous_names":["fl03/smplx"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/FL03/smplx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Fsmplx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Fsmplx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Fsmplx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Fsmplx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FL03","download_url":"https://codeload.github.com/FL03/smplx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FL03%2Fsmplx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266127212,"owners_count":23880420,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crates-io","mathematics","rust-lang","simplex","topology"],"created_at":"2024-10-28T11:08:55.393Z","updated_at":"2026-02-10T09:02:48.205Z","avatar_url":"https://github.com/FL03.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# smplx\n\n[![crates.io](https://img.shields.io/crates/v/smplx.svg)](https://crates.io/crates/smplx)\n[![docs.rs](https://docs.rs/smplx/badge.svg)](https://docs.rs/smplx)\n[![license](https://img.shields.io/crates/l/smplx.svg)](https://crates.io/crates/smplx)\n\n[![clippy](https://github.com/FL03/smplx/actions/workflows/clippy.yml/badge.svg)](https://github.com/FL03/smplx/actions/workflows/clippy.yml)\n[![rust](https://github.com/FL03/smplx/actions/workflows/rust.yml/badge.svg)](https://github.com/FL03/smplx/actions/workflows/rust.yml)\n\n***\n\n_**The library is currently in the early stages of development and is not yet ready for production use.**_\n\nWelcome to smplx, a topologically oriented crate focused on simplexes and their complexes.\n\n## Features\n\n- [x] Simplex\n\n## Background\n\nA simplex describes the smallest (and simplest) polytope in any dimension. More specifically, $n$-simplex $\\Delta^n$ is defined to be the $n$-dimensional polytope formed from the convex hull $C$ of its $n+1$ verices where the vertices are affinely independent points $u_0, u_1, \\ldots, u_n \\in \\mathbb{R}^n$.\n\n$C = \\biggl\\{ \\sum_{i=0}^{k} \\lambda_i v_i : \\lambda_i\\geq{0} \\text{ for all } j \\text{ and }\\sum_{i=0}^{k} \\lambda_i = 1 \\biggr\\}$\n\n## Getting Started\n\n### Building from the source\n\nStart by cloning the repository\n\n```bash\ngit clone https://github.com/FL03/smplx.git\ncd smplx\n```\n\n#### _Build the workspace_\n\n```bash\ncargo build --all-features -r --workspace\n```\n\n#### _Run an exmple_\n\n```bash\ncargo run -p smplx --example {basic|complex|...|etc.}\n```\n\n## Usage\n\nAdd this to your `Cargo.toml`:\n\n```toml\n[dependencies.smplx]\nfeatures = [\"full\"]\nversion = \"0.0.1\"\n```\n\n### Examples\n\n#### _Simplex_\n\n```rust\n    extern crate smplx;\n\n    use smplx::Simplex;\n\n    fn main() -\u003e Result\u003c(), Box\u003cdyn std::error::Error\u003e\u003e {\n        tracing_subscriber::fmt::init();\n        tracing::info!(\"Welcome to smplx!\");\n\n        let simplex = Simplex::new().dim(2).with_vertices([0, 1, 2]).build()?;\n\n        Ok(())\n    }\n```\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first\nto discuss what you would like to change.\n\nPlease make sure to update tests as appropriate.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffl03%2Fsmplx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffl03%2Fsmplx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffl03%2Fsmplx/lists"}