{"id":28499477,"url":"https://github.com/hacknus/bevy_voxel_plot","last_synced_at":"2026-03-03T22:32:54.048Z","repository":{"id":289815618,"uuid":"972490458","full_name":"hacknus/bevy_voxel_plot","owner":"hacknus","description":"Simple crate to efficiently create a voxel plot (with opacity) in bevy/rust.","archived":false,"fork":false,"pushed_at":"2025-11-27T23:26:19.000Z","size":1120,"stargazers_count":5,"open_issues_count":1,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-11-30T12:56:21.439Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/hacknus.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.MD","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,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-04-25T06:56:58.000Z","updated_at":"2025-11-28T08:39:09.000Z","dependencies_parsed_at":"2025-04-28T19:42:03.825Z","dependency_job_id":null,"html_url":"https://github.com/hacknus/bevy_voxel_plot","commit_stats":null,"previous_names":["hacknus/bevy_voxel_test","hacknus/bevy_voxel_plot"],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/hacknus/bevy_voxel_plot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fbevy_voxel_plot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fbevy_voxel_plot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fbevy_voxel_plot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fbevy_voxel_plot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacknus","download_url":"https://codeload.github.com/hacknus/bevy_voxel_plot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacknus%2Fbevy_voxel_plot/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30064353,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-03T18:21:05.932Z","status":"ssl_error","status_checked_at":"2026-03-03T18:20:59.341Z","response_time":61,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2025-06-08T14:36:26.473Z","updated_at":"2026-03-03T22:32:54.040Z","avatar_url":"https://github.com/hacknus.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Bevy Voxel Plot\n\n[![crates.io](https://img.shields.io/crates/v/bevy_voxel_plot.svg)](https://crates.io/crates/bevy_voxel_plot)\n[![Docs](https://docs.rs/bevy_voxel_plot/badge.svg)](https://docs.rs/bevy_voxel_plot)\n[![Rust](https://github.com/hacknus/bevy_voxel_plot/actions/workflows/rust.yml/badge.svg)](https://github.com/hacknus/bevy_voxel_plot/actions/workflows/rust.yml)\n\nA simple and efficient Voxel Plot for [Bevy](https://bevyengine.org).\nDeveloped for data visualisation purposes (e.g. pointclouds/voxelplots of 3D structures).\n\nIt uses instancing and is an adaptation of the\n`custom_shader_instancing.rs` [example of bevy](https://github.com/bevyengine/bevy/blob/main/examples/shader/custom_shader_instancing.rs)\nwhich also supports opacity control.\n\nAble to plot 2 million voxels on an M2Pro Macbook Pro.\n\n![screenshot_main](screenshot_main.png)\n![screenshot_bunny](screenshot_bunny.png)\n\n## Examples:\n\n```shell\ncargo run --release --examples bevy_egui\n```\n\n- Bevy Pan Orbit Camera\n\nSimple implementation of the Voxel Plot along with the `bevy_panorbit_camera` crate.\n\n- Bevy Egui\n\nMore advanced implementation of the Voxel Plot along with the `bevy_panorbit_camera` crate inside an `egui` image\ntexture, implemented with the `bevy_egui` crate.\n\n- Bevy Pointcloud Bunny\n\nLoad the test file `bunny.pcd` from [pcl](https://github.com/PointCloudLibrary/pc) and display it as colorful voxels with\nlow alpha.\n\n## Version Compatibility\n\n| bevy | bevy_voxel_plot |\n|------|-----------------|\n| 0.17 | 3.0             |\n| 0.16 | 2.0             |\n| 0.15 | 1.0             |\n\nNote: version 1.0 requires the shader to be copied in your directory (did only fix that from 2.1+ )\n\n## Credits\n\n- [Bevy](https://bevyengine.org)\n- [bevy_egui](https://github.com/vladbat00/bevy_egui)\n- [bevy_panorbit_camera](https://github.com/Plonq/bevy_panorbit_camera)\n- [pcl](https://github.com/PointCloudLibrary/pc)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacknus%2Fbevy_voxel_plot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacknus%2Fbevy_voxel_plot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacknus%2Fbevy_voxel_plot/lists"}