{"id":13682705,"url":"https://github.com/dimforge/ncollide","last_synced_at":"2025-05-14T19:08:46.744Z","repository":{"id":40481942,"uuid":"10066282","full_name":"dimforge/ncollide","owner":"dimforge","description":"2 and 3-dimensional collision detection library in Rust.","archived":false,"fork":false,"pushed_at":"2023-01-31T13:02:36.000Z","size":8647,"stargazers_count":932,"open_issues_count":77,"forks_count":107,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-05-14T19:08:43.739Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://ncollide.org","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/dimforge.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":["dimforge"],"patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2013-05-14T22:27:35.000Z","updated_at":"2025-05-09T15:28:37.000Z","dependencies_parsed_at":"2023-02-16T19:31:15.788Z","dependency_job_id":null,"html_url":"https://github.com/dimforge/ncollide","commit_stats":null,"previous_names":["sebcrozet/ncollide"],"tags_count":88,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimforge%2Fncollide","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimforge%2Fncollide/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimforge%2Fncollide/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dimforge%2Fncollide/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dimforge","download_url":"https://codeload.github.com/dimforge/ncollide/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254209859,"owners_count":22032897,"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":[],"created_at":"2024-08-02T13:01:51.460Z","updated_at":"2025-05-14T19:08:44.780Z","avatar_url":"https://github.com/dimforge.png","language":"Rust","funding_links":["https://github.com/sponsors/dimforge"],"categories":["Physics","Rust"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://discord.gg/vt9DJSW\"\u003e\n        \u003cimg src=\"https://img.shields.io/discord/507548572338880513.svg?logo=discord\u0026colorB=7289DA\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://crates.io/crates/ncollide2d\"\u003e\n         \u003cimg src=\"http://meritbadge.herokuapp.com/ncollide2d?style=flat-square\" alt=\"crates.io\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://crates.io/crates/ncollide3d\"\u003e\n         \u003cimg src=\"http://meritbadge.herokuapp.com/ncollide3d?style=flat-square\" alt=\"crates.io\"\u003e\n    \u003c/a\u003e\n    \u003ca href=\"https://circleci.com/gh/dimforge/ncollide\"\u003e\n        \u003cimg src=\"https://circleci.com/gh/dimforge/ncollide.svg?style=svg\" alt=\"Build status\"\u003e\n    \u003c/a\u003e\n\u003c/p\u003e\n\u003cp align = \"center\"\u003e\n    \u003cstrong\u003e\n        \u003ca href=\"http://ncollide.org/rustdoc/ncollide2d\"\u003e2D Documentation\u003c/a\u003e | \u003ca href=\"http://ncollide.org/rustdoc/ncollide3d\"\u003e3D Documentation\u003c/a\u003e | \u003ca href=\"http://ncollide.org\"\u003eUser Guide\u003c/a\u003e | \u003ca href=\"https://discourse.nphysics.org\"\u003eForum\u003c/a\u003e\n    \u003c/strong\u003e\n\u003c/p\u003e\n\n\n⚠️**This crate is now passively-maintained. It is being superseded by the [Parry](https://parry.rs) project.**⚠️\n\nncollide\n========\n\n**ncollide** is a 2 and 3-dimensional collision detection library written with\nthe rust programming language.\n\nThe official user guide is available [here](http://ncollide.org).\nThe rustdoc documentation is available [for 3D](http://ncollide.org/rustdoc/ncollide3d) and [for 2D](http://ncollide.org/rustdoc/ncollide2d).\n\n## Compilation\nYou will need the last stable build of the [rust compiler](http://www.rust-lang.org)\nand the official package manager: [cargo](https://github.com/rust-lang/cargo).\n\nSimply add one the following (or both) to your `Cargo.toml` file:\n\n```\n[dependencies]\nncollide2d = \"0.33\" # For 2D collision detection.\nncollide3d = \"0.33\" # For 3D collision detection.\n```\n\n\n## Features\n- dynamic bounding volume tree based broad phase\n- ball vs. ball collision detection,\n- plane vs. any convex object collision detection.\n- collision detection between arbitrary convex objects\n- compound geometries\n- ray-casting\n- time of impact computation  for objects without rotational movement (compound vs. compound is not\n  yet implemented)\n\nAnd various traits for collision detectors and broad phase collision detection.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimforge%2Fncollide","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdimforge%2Fncollide","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdimforge%2Fncollide/lists"}