HDK
|
#include <algorithm>
#include <cassert>
#include <cstring>
#include <iostream>
#include <openvdb/Platform.h>
#include <openvdb/Types.h>
Go to the source code of this file.
Namespaces | |
openvdb | |
openvdb::OPENVDB_VERSION_NAME | |
openvdb::OPENVDB_VERSION_NAME::util | |
Macros | |
#define | COUNTONB2(n) n, n+1, n+1, n+2 |
#define | COUNTONB4(n) COUNTONB2(n), COUNTONB2(n+1), COUNTONB2(n+1), COUNTONB2(n+2) |
#define | COUNTONB6(n) COUNTONB4(n), COUNTONB4(n+1), COUNTONB4(n+1), COUNTONB4(n+2) |
Functions | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOn (Byte v) |
Return the number of on bits in the given 8-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOff (Byte v) |
Return the number of off bits in the given 8-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOn (Index32 v) |
Return the number of on bits in the given 32-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOff (Index32 v) |
Return the number of off bits in the given 32-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOn (Index64 v) |
Return the number of on bits in the given 64-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::CountOff (Index64 v) |
Return the number of off bits in the given 64-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::FindLowestOn (Byte v) |
Return the least significant on bit of the given 8-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::FindLowestOn (Index32 v) |
Return the least significant on bit of the given 32-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::FindLowestOn (Index64 v) |
Return the least significant on bit of the given 64-bit value. More... | |
Index32 | openvdb::OPENVDB_VERSION_NAME::util::FindHighestOn (Index32 v) |
Return the most significant on bit of the given 32-bit value. More... | |
Definition in file NodeMasks.h.