{"id":46035830,"url":"https://github.com/tomasf/gridfinity-cadova","last_synced_at":"2026-03-01T05:25:41.338Z","repository":{"id":335119397,"uuid":"1135775652","full_name":"tomasf/gridfinity-cadova","owner":"tomasf","description":"Cadova library for Gridfinity","archived":false,"fork":false,"pushed_at":"2026-01-28T15:29:26.000Z","size":7492,"stargazers_count":0,"open_issues_count":1,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-29T06:51:53.579Z","etag":null,"topics":["cadova","gridfinity"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/tomasf.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":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-01-16T15:19:07.000Z","updated_at":"2026-01-28T15:33:30.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/tomasf/gridfinity-cadova","commit_stats":null,"previous_names":["tomasf/gridfinity-cadova"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/tomasf/gridfinity-cadova","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomasf%2Fgridfinity-cadova","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomasf%2Fgridfinity-cadova/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomasf%2Fgridfinity-cadova/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomasf%2Fgridfinity-cadova/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tomasf","download_url":"https://codeload.github.com/tomasf/gridfinity-cadova/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tomasf%2Fgridfinity-cadova/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29960338,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T01:47:18.291Z","status":"online","status_checked_at":"2026-03-01T02:00:07.437Z","response_time":124,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["cadova","gridfinity"],"created_at":"2026-03-01T05:25:40.712Z","updated_at":"2026-03-01T05:25:41.317Z","avatar_url":"https://github.com/tomasf.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Gridfinity-Cadova\n\nA Swift library for generating [Gridfinity](https://www.youtube.com/watch?v=ra_9zU-mnl8) storage system components using [Cadova](https://github.com/tomasf/Cadova). Gridfinity is a modular storage system designed by Zack Freedman that uses a standardized 42mm × 42mm grid.\n\nThis project can be used in two ways:\n\n### Generate standard Gridfinity parts\nRun the included generator to create bins, baseplates, and baseplate sets with configurable dimensions, ready for 3D printing.\n\n### Build custom Gridfinity-compatible designs\nImport the library into your own Cadova projects and use the provided components as building blocks to create specialized storage solutions that integrate with the Gridfinity ecosystem.\n\n## Features\n\n### Bins\n\n`Bin` creates hollow storage containers with configurable dimensions:\n\n```swift\nBin(\n    size: Units3D(x: 2, y: 2, z: 3),\n    wallThickness: 1.0,\n    bottomThickness: 0.6,\n    innerBottomCornerRadius: 1.0,\n    withStackingLip: true\n)\n```\n\n- Size specified in grid units (42mm × 42mm × 7mm)\n- Configurable wall and bottom thickness\n- Optional stacking lip for nesting bins without a baseplate\n\n### Baseplates\n\n`Baseplate` creates the base platform that bins snap into:\n\n```swift\nBaseplate(size: Units2D(x: 4, y: 4), options: [.tabs, .screws])\n```\n\nOptions:\n- `.foundation` – Adds a 7mm foundation layer\n- `.tabs` – Interlocking tabs for connecting adjacent baseplates\n- `.screws` – M3 screw holes and nut traps for secure fastening\n- `.magnets` – 6.5mm magnet slots in each grid cell\n\n### Baseplate Sets\n\n`BaseplateSet` automatically partitions a large area into printable baseplate pieces:\n\n```swift\nBaseplateSet(\n    footprint: Vector2D(713, 495),  // Target area (e.g., drawer interior)\n    printbedSize: Vector2D(340, 320),  // Your printer's bed size\n    frontPadding: 10,  // Optional non-grid space at front\n    options: [.tabs, .screws]\n)\n```\n\nGenerates:\n- Main baseplate pieces that tile the grid-aligned area\n- Narrow/shallow pieces for partial grid coverage\n- Corner pieces where needed\n- Side spacers to fill non-grid gaps on left/right edges\n- Front/back spacers for non-grid depth, automatically split to fit the print bed\n\n### Blocks\n\n`Block` creates solid Gridfinity base units (used internally by `Bin`):\n\n```swift\nBlock(size: Units2D(x: 3, y: 2), height: 42)\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomasf%2Fgridfinity-cadova","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftomasf%2Fgridfinity-cadova","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftomasf%2Fgridfinity-cadova/lists"}