{"id":15653073,"url":"https://github.com/daavoo/aframe-pointcloud-component","last_synced_at":"2025-08-08T23:06:50.218Z","repository":{"id":127109944,"uuid":"99365584","full_name":"daavoo/aframe-pointcloud-component","owner":"daavoo","description":"A Point Cloud component for [A-Frame](https://aframe.io).","archived":false,"fork":false,"pushed_at":"2017-08-05T10:57:52.000Z","size":11014,"stargazers_count":33,"open_issues_count":0,"forks_count":9,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-30T21:11:14.933Z","etag":null,"topics":["a-frame","point-cloud"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/daavoo.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}},"created_at":"2017-08-04T17:28:11.000Z","updated_at":"2024-06-10T05:32:48.000Z","dependencies_parsed_at":null,"dependency_job_id":"7da809ee-0b79-4ccc-8681-a2f272c21c88","html_url":"https://github.com/daavoo/aframe-pointcloud-component","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/daavoo/aframe-pointcloud-component","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daavoo%2Faframe-pointcloud-component","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daavoo%2Faframe-pointcloud-component/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daavoo%2Faframe-pointcloud-component/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daavoo%2Faframe-pointcloud-component/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daavoo","download_url":"https://codeload.github.com/daavoo/aframe-pointcloud-component/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daavoo%2Faframe-pointcloud-component/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269502567,"owners_count":24427790,"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","status":"online","status_checked_at":"2025-08-08T02:00:09.200Z","response_time":72,"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":["a-frame","point-cloud"],"created_at":"2024-10-03T12:44:37.328Z","updated_at":"2025-08-08T23:06:50.184Z","avatar_url":"https://github.com/daavoo.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"## aframe-pointcloud-component\n\nA Point Cloud component for [A-Frame](https://aframe.io).\n\n![gif](pointcloud.gif)\n\n### API\n\n| Property | Description | Default Value |\n| -------- | ----------- | ------------- |\n| src      | path to a .ply file   | \"\". Mandatory             |\n| texture  | path to a .png file   | \"\". Optional             |\n| size     | size of the rendered points   | 1             |\n| opacity     | opacity of the rendered points   | 1             |\n| depthWrite     | When using texture it can be useful to set this to false in order to avoid creating z-index artifacts.    | true  |\n\nYou might have to also adjust the `scale`, `position` and `rotation` properties in order to fit the point cloud to your scene.\n\nThe best way to adjust this properties is by using the awesome a-frame inspector (press `Crtl+Alt+I` in the scene window).\n\nTake a look at the included example.\n\n### Installation\n\n#### Browser\n\nInstall and use by directly including the [browser files](dist):\n\n```html\n\u003chead\u003e\n  \u003ctitle\u003eMy Point Cloud Scene\u003c/title\u003e\n  \u003cscript src=\"https://aframe.io/releases/0.6.0/aframe.min.js\"\u003e\u003c/script\u003e\n  \u003cscript src=\"https://unpkg.com/aframe-pointcloud-component/dist/aframe-pointcloud-component.min.js\"\u003e\u003c/script\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n  \u003ca-scene\u003e\n      \u003ca-pointcloud \n        scale=\"0.5 0.5 0.5\" \n        position=\"1.5 2 0.5\" \n        src=\"url(Sphere.ply)\" \n        size=\"0.05\"\n        texture=\"url(firefox.png)\"\n        depthWrite=\"false\"\u003e\n      \u003c/a-pointcloud\u003e\n  \u003c/a-scene\u003e\n\u003c/body\u003e\n```\n\n\u003c!-- If component is accepted to the Registry, uncomment this. --\u003e\n\u003c!--\nOr with [angle](https://npmjs.com/package/angle/), you can install the proper\nversion of the component straight into your HTML file, respective to your\nversion of A-Frame:\n\n```sh\nangle install aframe-pointcloud-component\n```\n--\u003e\n\n#### npm\n\nInstall via npm:\n\n```bash\nnpm install aframe-pointcloud-component\n```\n\nThen require and use.\n\n```js\nrequire('aframe');\nrequire('aframe-pointcloud-component');\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaavoo%2Faframe-pointcloud-component","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaavoo%2Faframe-pointcloud-component","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaavoo%2Faframe-pointcloud-component/lists"}