openvdb
openvdb copied to clipboard
OpenVDB - Sparse volume data structure and tools
After installing all dependencies and building OpenVDB from https://github.com/AcademySoftwareFoundation/openvdb, I ran TestOpenVDB.py and got the following message: **libboost_python37.so.1.68.0: cannot open shared object file: No such file or directory** I ran...
The AttributeWriteHandle in AttributeArray.h has a typedef for a std::unique_ptr but it is ScopedPtr, not UniquePtr. Unfortunately as this is named differently to the AttributeHandle::UniquePtr it doesnt override that typedef...
Converted a lot of type_traits into c++11 (std::is_floating_point, std::is_same etc). Was a straight conversion and can then remove some boost headers. Also changed a lot of boost::bind into std::bind. One...
I have a suggestion to improve viewport previews for VDB files in houdini. Currently if we use the .vdb file format to write out volumes, the display density set by...
How to visualize the voxel grids or .vdb file generated by openVDB? When I #include , it shows no such file or directory
When using `openvdb::tools::meshToVolume()`, there is this great feature that allows you to pass a [`MeshDataAdapter`](https://www.openvdb.org/documentation/doxygen/interfaceMeshDataAdapter.html) that acts as pro proxy for reading mesh data. This allows the user to plug...
I found what I think is a bug in openVDB 7.2. I created a minimum working example that you will find at the end of this post. ## Bug description...
So I 'm using openvdb as a module of my project. Everything goes fine until I add a`find_package(OpenVDB REQUIRED)` command in my CMakeLists.txt. The error message is: ``` CMake Error...
Hi guys, I focused on model evolution by using levelsetadvect tool, does anyone know how to add different velocity for every voxels by VelocityFields, which really confused me a lot....
I noticed a mismatch of voxel positions in the rendered results of arbitrary fog volume using CUDA and GLSL backend. So I looked into the problem and found some disagreements...