AcademySoftwareFoundation / Openvdb

Licence: mpl-2.0
OpenVDB - Sparse volume data structure and tools

Projects that are alternatives of or similar to Openvdb

voxel-editor
N-Space: a mobile app for building 3D interactive worlds
Stars: ✭ 39 (-97.13%)
Mutual labels:  voxel, voxels
Blood-Voxel-Pack
Additional voxel models for Blood video game. Compatible with BuildGDX, NBlood, and Fresh Supply.
Stars: ✭ 42 (-96.91%)
Mutual labels:  voxel, voxels
Voxel Core
Voxel plugin for the Godot game engine!
Stars: ✭ 148 (-89.11%)
Mutual labels:  voxel, voxels
Engine
Home of a voxel game engine and its tools (like a voxel editor)
Stars: ✭ 429 (-68.43%)
Mutual labels:  voxel, voxels
Cubizer
⚡️Create your voxel-style games in unity 2017
Stars: ✭ 79 (-94.19%)
Mutual labels:  voxel, voxels
parse-magica-voxel
Parse MagicaVoxel .vox files to javascript objects works in browser or server
Stars: ✭ 52 (-96.17%)
Mutual labels:  voxel, voxels
Sucle
Common Lisp Voxel Game Engine
Stars: ✭ 239 (-82.41%)
Mutual labels:  voxel, voxels
vengi
Home of a voxel game engine and its tools (like a voxel editor)
Stars: ✭ 800 (-41.13%)
Mutual labels:  voxel, voxels
Ue4voxelterrain
[WIP] Unreal Engine 4: Smooth voxel terrian example
Stars: ✭ 415 (-69.46%)
Mutual labels:  voxel, voxels
Awesome Voxel
Voxel resources for coders
Stars: ✭ 96 (-92.94%)
Mutual labels:  vfx, voxel
Voxelframework
An awesome Voxel framework for Unity (Game Engine)
Stars: ✭ 57 (-95.81%)
Mutual labels:  voxel
Unityraymarching
Unity Raymarching Examples
Stars: ✭ 57 (-95.81%)
Mutual labels:  voxel
Dkvfxsketches
VFX sketches with Depthkit and Unity
Stars: ✭ 74 (-94.55%)
Mutual labels:  vfx
Leven
Complete source for my experimental voxel engine
Stars: ✭ 79 (-94.19%)
Mutual labels:  voxels
Sketchisland
Procedurally generated voxel islands
Stars: ✭ 46 (-96.62%)
Mutual labels:  voxels
3d Reconstruction With Neural Networks
3D reconstruction with neural networks using Tensorflow. See link for Video (https://www.youtube.com/watch?v=iI6ZMST8Ri0)
Stars: ✭ 71 (-94.78%)
Mutual labels:  voxel
Grubo
Audio visual experience with Roland Groovebox MC-101 and the Unity game engine
Stars: ✭ 41 (-96.98%)
Mutual labels:  vfx
Unity Grabsquares Effect
Unity GrabSquares Effect
Stars: ✭ 39 (-97.13%)
Mutual labels:  vfx
Openexr
The OpenEXR project provides the specification and reference implementation of the EXR file format, the professional-grade image storage format of the motion picture industry.
Stars: ✭ 992 (-27.01%)
Mutual labels:  vfx
Spriteglow
A sprite glow effect for Unity game engine
Stars: ✭ 1,287 (-5.3%)
Mutual labels:  vfx

OpenVDB

License CII Best Practices

Build Status
OpenVDB Build
OpenVDB AX ax

Website | Discussion Forum | Documentation

OpenVDB 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.

Development Repository

This 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.

License

OpenVDB is released under the Mozilla Public License Version 2.0, which is a free, open source software license developed and maintained by the Mozilla Foundation.

The trademarks of any contributor to this project may not be used in association with the project without the contributor's express permission.

Contributing

OpenVDB welcomes contributions to the OpenVDB project. Please refer to the contribution guidelines for details on how to make a contribution.

Developer Quick Start

The following provides basic installation examples for the core OpenVDB library. Other components, such as the python module, OpenVDB AX and various executables, may require additional dependencies. See the build documentation for help with installations.

Linux

Installing Dependencies (Boost, TBB, Blosc)
apt-get install -y libboost-iostreams-dev
apt-get install -y libboost-system-dev
apt-get install -y libtbb-dev
git clone [email protected]:Blosc/c-blosc.git
cd c-blosc
git checkout tags/v1.5.0 -b v1.5.0
mkdir build
cd build
cmake ..
make -j4
make install
cd ../..
Building OpenVDB
git clone [email protected]:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake ..
make -j4
make install

macOS

Installing Dependencies (Boost, TBB, Blosc)
brew install boost
brew install tbb
git clone [email protected]:Blosc/c-blosc.git
cd c-blosc
git checkout tags/v1.5.0 -b v1.5.0
mkdir build
cd build
cmake ..
make -j4
make install
cd ../..
Building OpenVDB
git clone [email protected]:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake ..
make -j4
make install

Windows

Installing Dependencies (Boost, TBB, Blosc)

Note that the following commands have only been tested for 64bit systems/libraries. It is recommended to set the VCPKG_DEFAULT_TRIPLET environment variable to x64-windows to use 64-bit libraries by default. You will also require Git, vcpkg and CMake to be installed.

vcpkg install zlib:x64-windows
vcpkg install blosc:x64-windows
vcpkg install tbb:x64-windows
vcpkg install boost-iostreams:x64-windows
vcpkg install boost-system:x64-windows
vcpkg install boost-any:x64-windows
vcpkg install boost-algorithm:x64-windows
vcpkg install boost-uuid:x64-windows
vcpkg install boost-interprocess:x64-windows
Building OpenVDB
git clone [email protected]:AcademySoftwareFoundation/openvdb.git
cd openvdb
mkdir build
cd build
cmake -DCMAKE_TOOLCHAIN_FILE=<PATH_TO_VCPKG>\scripts\buildsystems\vcpkg.cmake -DVCPKG_TARGET_TRIPLET=x64-windows -A x64 ..
cmake --build . --parallel 4 --config Release --target install
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].