{"id":21459431,"url":"https://github.com/juliafem/boundingsphere.jl","last_synced_at":"2025-07-15T01:32:01.923Z","repository":{"id":61797323,"uuid":"138612043","full_name":"JuliaFEM/BoundingSphere.jl","owner":"JuliaFEM","description":"Package contains algorithms to calculate smallest enclosing sphere for a given set of points in N dimensions.","archived":false,"fork":false,"pushed_at":"2020-02-08T16:20:26.000Z","size":45,"stargazers_count":10,"open_issues_count":4,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-09-09T06:45:04.641Z","etag":null,"topics":["bounding-sphere","julia"],"latest_commit_sha":null,"homepage":"https://juliafem.github.io/BoundingSphere.jl/latest","language":"Julia","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JuliaFEM.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-06-25T15:13:30.000Z","updated_at":"2024-08-21T10:32:17.000Z","dependencies_parsed_at":"2022-10-21T11:00:48.433Z","dependency_job_id":null,"html_url":"https://github.com/JuliaFEM/BoundingSphere.jl","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaFEM%2FBoundingSphere.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaFEM%2FBoundingSphere.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaFEM%2FBoundingSphere.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JuliaFEM%2FBoundingSphere.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JuliaFEM","download_url":"https://codeload.github.com/JuliaFEM/BoundingSphere.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":226012153,"owners_count":17559622,"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":["bounding-sphere","julia"],"created_at":"2024-11-23T06:29:06.503Z","updated_at":"2024-11-23T06:29:07.113Z","avatar_url":"https://github.com/JuliaFEM.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BoundingSphere\n\n[![][gitter-img]][gitter-url]\n[![][travis-img]][travis-url]\n[![][pkg-0.6-img]][pkg-0.6-url]\n[![][pkg-0.7-img]][pkg-0.7-url]\n[![][coveralls-img]][coveralls-url]\n[![][docs-stable-img]][docs-stable-url]\n[![][docs-latest-img]][docs-latest-url]\n[![][issues-img]][issues-url]\n[![][appveyor-img]][appveyor-url]\n\nPackage contains algorithms to calculate smallest enclosing sphere for a given\nset of points in N dimensions.\n\nBoundingSphere.jl is a complete rewrite from scratch of [Miniball.jl](https://github.com/JuliaFEM/Miniball.jl).\nSee [Miniball.jl issue #28](https://github.com/JuliaFEM/Miniball.jl/issues/28).\n\n## Usage\n\n```julia\nusing BoundingSphere\n\npts = [randn(3) for _ in 1:10]\ncenter, radius = boundingsphere(pts)\n\nusing StaticArrays\npts = [@SVector(randn(3)) for _ in 1:10] # use static arrays for performance\nalgorithm = Ritter() # fast but inaccurate\ncenter, radius = boundingsphere(pts, algorithm) # customize algorithm\n```\n[gitter-img]: https://badges.gitter.im/Join%20Chat.svg\n[gitter-url]: https://gitter.im/JuliaFEM/JuliaFEM.jl\n\n[contrib-url]: https://juliafem.github.io/BoundingSphere.jl/latest/man/contributing/\n[discourse-tag-url]: https://discourse.julialang.org/tags/boundingsphere\n\n[docs-latest-img]: https://img.shields.io/badge/docs-latest-blue.svg\n[docs-latest-url]: https://juliafem.github.io/BoundingSphere.jl/latest\n\n[docs-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg\n[docs-stable-url]: https://juliafem.github.io/BoundingSphere.jl/stable\n\n[travis-img]: https://travis-ci.org/JuliaFEM/BoundingSphere.jl.svg?branch=master\n[travis-url]: https://travis-ci.org/JuliaFEM/BoundingSphere.jl\n\n[coveralls-img]: https://coveralls.io/repos/github/JuliaFEM/BoundingSphere.jl/badge.svg?branch=master\n[coveralls-url]: https://coveralls.io/github/JuliaFEM/BoundingSphere.jl?branch=master\n\n[issues-img]: https://img.shields.io/github/issues/JuliaFEM/BoundingSphere.jl.svg\n[issues-url]: https://github.com/JuliaFEM/BoundingSphere.jl/issues\n\n[pkg-0.6-img]: http://pkg.julialang.org/badges/BoundingSphere_0.6.svg\n[pkg-0.6-url]: http://pkg.julialang.org/?pkg=BoundingSphere\u0026ver=0.6\n[pkg-0.7-img]: http://pkg.julialang.org/badges/BoundingSphere_0.7.svg\n[pkg-0.7-url]: http://pkg.julialang.org/?pkg=BoundingSphere\u0026ver=0.7\n\n[appveyor-img]: https://ci.appveyor.com/api/projects/status/s1vk9v0sxbmr2pen/branch/master?svg=true\n[appveyor-url]: https://ci.appveyor.com/project/JuliaFEM/boundingsphere-jl/branch/master\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliafem%2Fboundingsphere.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuliafem%2Fboundingsphere.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuliafem%2Fboundingsphere.jl/lists"}