{"id":19602109,"url":"https://github.com/zenustech/openvdb7","last_synced_at":"2025-10-25T20:44:53.631Z","repository":{"id":103355011,"uuid":"429803329","full_name":"zenustech/openvdb7","owner":"zenustech","description":null,"archived":false,"fork":false,"pushed_at":"2021-11-19T16:14:09.000Z","size":2727,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-01-09T08:22:25.712Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zenustech.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":"CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-19T13:15:06.000Z","updated_at":"2021-11-19T16:14:12.000Z","dependencies_parsed_at":"2023-07-07T21:16:26.110Z","dependency_job_id":null,"html_url":"https://github.com/zenustech/openvdb7","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zenustech%2Fopenvdb7","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zenustech%2Fopenvdb7/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zenustech%2Fopenvdb7/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zenustech%2Fopenvdb7/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zenustech","download_url":"https://codeload.github.com/zenustech/openvdb7/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240884766,"owners_count":19873408,"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-11-11T09:22:14.224Z","updated_at":"2025-09-18T17:28:43.589Z","avatar_url":"https://github.com/zenustech.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"![OpenVDB](https://www.openvdb.org/images/openvdb_logo.png)\n\n[![License](https://img.shields.io/github/license/AcademySoftwareFoundation/openvdb)](LICENSE.md)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/2774/badge)](https://bestpractices.coreinfrastructure.org/projects/2774)\n\n| Build           | Status |\n| --------------- | ------ |\n| OpenVDB         | [![Build](https://github.com/AcademySoftwareFoundation/openvdb/workflows/Build/badge.svg)](https://github.com/AcademySoftwareFoundation/openvdb/actions?query=workflow%3ABuild) |\n| OpenVDB AX      | [![ax](https://github.com/AcademySoftwareFoundation/openvdb/workflows/ax/badge.svg)](https://github.com/AcademySoftwareFoundation/openvdb/actions?query=workflow%3Aax) |\n\n[Website](https://www.openvdb.org) |\n[Discussion Forum](https://www.openvdb.org/forum) |\n[Documentation](https://www.openvdb.org/documentation/)\n\nOpenVDB is an open source C++ library comprising a novel hierarchical data structure and a large suite of tools for the efficient storage and manipulation of sparse volumetric data discretized on three-dimensional grids. It was developed by DreamWorks Animation for use in volumetric applications typically encountered in feature film production.\n\n\n### Development Repository\n\nThis GitHub repository hosts the trunk of the OpenVDB development. This implies that it is the newest public version with the latest features and bug fixes. However, it also means that it has not undergone a lot of testing and is generally less stable than the [production releases](https://github.com/AcademySoftwareFoundation/openvdb/releases).\n\n\n### License\n\nOpenVDB is released under the [Mozilla Public License Version 2.0](https://www.mozilla.org/MPL/2.0/), which is a free, open source software license developed and maintained by the Mozilla Foundation.\n\nThe trademarks of any contributor to this project may not be used in association with the project without the contributor's express permission.\n\n### Contributing\n\nOpenVDB welcomes contributions to the OpenVDB project. Please refer to the [contribution guidelines](CONTRIBUTING.md) for details on how to make a contribution.\n\n### Developer Quick Start\n\nSee the [build documentation](https://www.openvdb.org/documentation/doxygen/build.html) for help with installations.\n\n#### Linux\n##### Installing Dependencies (Boost, TBB, OpenEXR, Blosc)\n\n```\napt-get install -y libboost-iostreams-dev\napt-get install -y libboost-system-dev\napt-get install -y libtbb-dev\napt-get install -y libilmbase-dev\napt-get install -y libopenexr-dev\n```\n```\ngit clone git@github.com:Blosc/c-blosc.git\ncd c-blosc\ngit checkout tags/v1.5.0 -b v1.5.0\nmkdir build\ncd build\ncmake ..\nmake -j4\nmake install\ncd ../..\n```\n\n##### Building OpenVDB\n```\ngit clone git@github.com:AcademySoftwareFoundation/openvdb.git\ncd openvdb\nmkdir build\ncd build\ncmake ..\nmake -j4\nmake install\n```\n#### macOS\n##### Installing Dependencies (Boost, TBB, OpenEXR, Blosc)\n```\nbrew install boost\nbrew install tbb\nbrew install ilmbase\nbrew install openexr\n```\n```\ngit clone git@github.com:Blosc/c-blosc.git\ncd c-blosc\ngit checkout tags/v1.5.0 -b v1.5.0\nmkdir build\ncd build\ncmake ..\nmake -j4\nmake install\ncd ../..\n```\n##### Building OpenVDB\n```\ngit clone git@github.com:AcademySoftwareFoundation/openvdb.git\ncd openvdb\nmkdir build\ncd build\ncmake ..\nmake -j4\nmake install\n```\n#### Windows\n##### Installing Dependencies (Boost, TBB, OpenEXR, Blosc)\n\nNote that the following commands have only been tested for 64bit systems/libraries.\nIt is recommended to set the `VCPKG_DEFAULT_TRIPLET` environment variable to\n`x64-windows` to use 64-bit libraries by default. You will also require\n[Git](https://git-scm.com/downloads), [vcpkg](https://github.com/microsoft/vcpkg)\nand [CMake](https://cmake.org/download/) to be installed.\n\n```\nvcpkg install zlib:x64-windows\nvcpkg install blosc:x64-windows\nvcpkg install openexr:x64-windows\nvcpkg install tbb:x64-windows\nvcpkg install boost-iostreams:x64-windows\nvcpkg install boost-system:x64-windows\nvcpkg install boost-any:x64-windows\nvcpkg install boost-algorithm:x64-windows\nvcpkg install boost-uuid:x64-windows\nvcpkg install boost-interprocess:x64-windows\n```\n##### Building OpenVDB\n```\ngit clone git@github.com:AcademySoftwareFoundation/openvdb.git\ncd openvdb\nmkdir build\ncd build\ncmake -DCMAKE_TOOLCHAIN_FILE=\u003cPATH_TO_VCPKG\u003e\\scripts\\buildsystems\\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -A x64 ..\ncmake --build . --parallel 4 --config Release --target install\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenustech%2Fopenvdb7","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzenustech%2Fopenvdb7","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzenustech%2Fopenvdb7/lists"}