{"id":17113036,"url":"https://github.com/emmt/twodimensional.jl","last_synced_at":"2025-04-09T20:33:48.113Z","repository":{"id":61799920,"uuid":"220776654","full_name":"emmt/TwoDimensional.jl","owner":"emmt","description":"A Julia package for 2-dimensional geometry","archived":false,"fork":false,"pushed_at":"2024-04-22T10:58:40.000Z","size":445,"stargazers_count":3,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-22T12:04:24.614Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/emmt.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,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2019-11-10T10:54:13.000Z","updated_at":"2024-04-23T12:57:18.852Z","dependencies_parsed_at":"2024-04-22T12:11:07.385Z","dependency_job_id":null,"html_url":"https://github.com/emmt/TwoDimensional.jl","commit_stats":{"total_commits":150,"total_committers":3,"mean_commits":50.0,"dds":"0.013333333333333308","last_synced_commit":"db33c0100df2ada79c307b547fb6bd05fc652cf4"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FTwoDimensional.jl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FTwoDimensional.jl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FTwoDimensional.jl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emmt%2FTwoDimensional.jl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emmt","download_url":"https://codeload.github.com/emmt/TwoDimensional.jl/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248107879,"owners_count":21049026,"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-10-14T17:02:27.573Z","updated_at":"2025-04-09T20:33:48.083Z","avatar_url":"https://github.com/emmt.png","language":"Julia","funding_links":[],"categories":[],"sub_categories":[],"readme":"# TwoDimensional\n\n[![License][license-img]][license-url]\n[![Stable][doc-stable-img]][doc-stable-url]\n[![Dev][doc-dev-img]][doc-dev-url]\n[![Build Status][github-ci-img]][github-ci-url]\n[![Build Status][appveyor-img]][appveyor-url]\n[![codecov](https://codecov.io/gh/emmt/TwoDimensional.jl/graph/badge.svg?token=m7V2JI1HA6)](https://codecov.io/gh/emmt/TwoDimensional.jl)\n\n`TwoDimensional` is a [Julia][julia-url] package which provides useful types\nand methods to define and manipulate 2-dimensional objects (points, rectangles,\ncircles, polygons, and bounding-boxes) and affine coordinate transforms. This\npackage also offers methods to build masks from the composition of elementary\nshapes.\n\nOther related packages:\n- [CoordinateTransformations](https://github.com/FugroRoames/CoordinateTransformations.jl)\n  for coordinate transformations;\n- [GeometryBasics](https://github.com/JuliaGeometry/GeometryBasics.jl) for\n  basic geometric types;\n- [Graphics](https://github.com/JuliaGraphics/Graphics.jl) for basic graphical\n  objects and methods;\n\n## Usage\n\n```julia\nusing TwoDimensional\n```\n\ngives you types `AffineTransform`, `Point` and `BoundingBox`.\n\nTo avoid conflicts with other packages, you may specifically use/import aliases\nto these types with suffixes `2D` like `AffineTransform2D`, `Point2D`,\n`BoundingBox2D`, etc. For example:\n\n```julia\nusing TwoDimensional: AffineTransform2D, Point2D, BoundingBox2D\n```\n\n## Documentation\n\nLatest documentation is\n[here](https://emmt.github.io/TwoDimensional.jl/latest).\n\n\n## Installation\n\n`TwoDimensional` is an [official Julia package][julia-pkgs-url] so you can\ninstall it from Julia's package manager.  In an interactive Julia session, hit\nthe `]` key to switch to the package manager REPL (you should get a `... pkg\u003e`\nprompt) and type:\n\n```julia\npkg\u003e add TwoDimensional\n```\n\nYou can also execute the following statements (in a Julia script or from Julia\nREPL):\n\n```julia\nusing Pkg\nPkg.add(\"TwoDimensional\")\n```\n\n[doc-stable-img]: https://img.shields.io/badge/docs-stable-blue.svg\n[doc-stable-url]: https://emmt.github.io/TwoDimensional.jl/stable\n\n[doc-dev-img]: https://img.shields.io/badge/docs-dev-blue.svg\n[doc-dev-url]: https://emmt.github.io/TwoDimensional.jl/dev\n\n[license-url]: ./LICENSE.md\n[license-img]: http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat\n\n[github-ci-img]: https://github.com/emmt/TwoDimensional.jl/actions/workflows/CI.yml/badge.svg?branch=master\n[github-ci-url]: https://github.com/emmt/TwoDimensional.jl/actions/workflows/CI.yml?query=branch%3Amaster\n\n[appveyor-img]: https://ci.appveyor.com/api/projects/status/github/emmt/TwoDimensional.jl?svg=true\n[appveyor-url]: https://ci.appveyor.com/project/emmt/TwoDimensional-jl\n\n[julia-url]: https://julialang.org/\n[julia-pkgs-url]: https://pkg.julialang.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Ftwodimensional.jl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femmt%2Ftwodimensional.jl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femmt%2Ftwodimensional.jl/lists"}