{"id":13676629,"url":"https://github.com/mathnet/mathnet-spatial","last_synced_at":"2025-12-29T23:40:36.433Z","repository":{"id":37664598,"uuid":"21280671","full_name":"mathnet/mathnet-spatial","owner":"mathnet","description":"Math.NET Spatial","archived":false,"fork":false,"pushed_at":"2024-01-07T13:45:30.000Z","size":26418,"stargazers_count":378,"open_issues_count":42,"forks_count":133,"subscribers_count":37,"default_branch":"master","last_synced_at":"2024-11-11T18:43:10.408Z","etag":null,"topics":["2d","3d","csharp","dotnet","geometry","math","mathnet","spatial"],"latest_commit_sha":null,"homepage":"http://spatial.mathdotnet.com","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mathnet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2014-06-27T15:38:32.000Z","updated_at":"2024-09-24T22:38:49.000Z","dependencies_parsed_at":"2024-11-11T18:45:05.354Z","dependency_job_id":null,"html_url":"https://github.com/mathnet/mathnet-spatial","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathnet%2Fmathnet-spatial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathnet%2Fmathnet-spatial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathnet%2Fmathnet-spatial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mathnet%2Fmathnet-spatial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mathnet","download_url":"https://codeload.github.com/mathnet/mathnet-spatial/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251456056,"owners_count":21592285,"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":["2d","3d","csharp","dotnet","geometry","math","mathnet","spatial"],"created_at":"2024-08-02T13:00:30.628Z","updated_at":"2025-12-29T23:40:36.392Z","avatar_url":"https://github.com/mathnet.png","language":"C#","readme":"Math.NET Spatial\n================\n\n[![Join the chat at https://gitter.im/mathnet/mathnet-spatial](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/mathnet/mathnet-spatial?utm_source=badge\u0026utm_medium=badge\u0026utm_campaign=pr-badge\u0026utm_content=badge)\n\nMath.NET Spatial is an opensource **geometry library for .Net, Silverlight and Mono**.\n\nSupports Mono and .Net Framework 4.6.1 or higher and .Net Standard 2.0 or higher on Linux, Mac and Windows.\n\nMath.NET Spatial is covered under the terms of the [MIT/X11](LICENSE.md) license. You may therefore link to it and use it in both opensource and proprietary software projects.\n\n**[Release Notes \u0026 Changes](RELEASENOTES.md)**\n\nInstallation Instructions\n-------------------------\n\nThe recommended way to get Math.NET Spatial is to use NuGet. The following packages are provided and maintained in the public [NuGet Gallery](https://nuget.org/profiles/mathnet/):\n\n- **MathNet.Spatial** - core package.\n\nSupported Platforms:\n\n- .Net 4.0 and Mono: Windows, Linux and Mac.\n\nBuilding Math.NET Spatial\n-------------------------\n\nWindows (.Net): [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/b0v856pd85i6a3hg/branch/master)](https://ci.appveyor.com/project/cdrnet/mathnet-spatial)\n\nIf you do not want to use the official binaries, or if you like to modify, debug or contribute, you can compile Math.NET Spatial locally either using Visual Studio or manually with the build scripts.\n\n* The Visual Studio solutions should build out of the box, without any preparation steps or package restores.\n* Instead of a compatible IDE you can also build the solutions with `msbuild`, or on Mono with `xbuild`.\n* The full build including unit tests, docs, NuGet and Zip packages is using [FAKE](https://fsharp.github.io/FAKE/).\n\n### How to build with MSBuild/XBuild\n\n    restore.cmd (or restore.sh)\n    dotnet build MathNet.Spatial.sln       # build with .Net SDK tools\n    msbuild MathNet.Spatial.sln            # build with MsBuild\n    xbuild MathNet.Spatial.sln             # build with Mono, e.g. on Linux or Mac\n\n### How to build with FAKE\n\n    build.cmd    # normal build (.Net 4.0), run unit tests\n    ./build.sh   # normal build (.Net 4.0), run unit tests - on Linux or Mac\n    ./buildn.sh  # normal build (.Net 4.0), run unit tests - bash on Windows (.Net instead of mono)\n\n    build.cmd Build              # normal build\n    build.cmd Build incremental  # normal build, incremental\n\n    build.cmd Test        # normal build, run unit tests\n    build.cmd Test quick  # normal build, run unit tests except long running ones\n\n    build.cmd Clean  # cleanup build artifacts\n    build.cmd Docs   # generate documentation\n    build.cmd Api    # generate api reference\n\n    build.cmd All          # build, test, docs, api reference\n\nFAKE itself is not included in the repository but it will download and bootstrap itself automatically when build.cmd is run the first time. Note that this step is *not* required when using Visual Studio or `msbuild` directly.\n\nQuick Links\n-----------\n\n* [**Project Website**](https://spatial.mathdotnet.com)\n* [Source Code](https://github.com/mathnet/mathnet-spatial)\n* [Documentation](https://spatial.mathdotnet.com/docs/)\n* [API Reference](https://spatial.mathdotnet.com/api/)\n* [Work Items and Bug Tracker](https://github.com/mathnet/mathnet-spatial/issues)\n\nMath.NET on other sites:\n\n* [Twitter @MathDotNet](https://twitter.com/MathDotNet)\n* [Google+](https://plus.google.com/112484567926928665204)\n* [Ohloh](https://www.ohloh.net/p/mathnet)\n* [Stack Overflow](https://stackoverflow.com/questions/tagged/mathdotnet)\n","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathnet%2Fmathnet-spatial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmathnet%2Fmathnet-spatial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmathnet%2Fmathnet-spatial/lists"}