Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'extern/openvdb/internal/openvdb/util/Util.h')
-rw-r--r--extern/openvdb/internal/openvdb/util/Util.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extern/openvdb/internal/openvdb/util/Util.h b/extern/openvdb/internal/openvdb/util/Util.h
index a70a28a295b..2acb3f3ef16 100644
--- a/extern/openvdb/internal/openvdb/util/Util.h
+++ b/extern/openvdb/internal/openvdb/util/Util.h
@@ -75,7 +75,7 @@ public:
inline void operator()(const typename TreeType1::LeafIter& lIter) const
{
- const Coord xyz = lIter->getOrigin();
+ const Coord xyz = lIter->origin();
const typename TreeType2::LeafNodeType* leaf = mOtherTree->probeConstLeaf(xyz);
if (leaf) {//leaf node
lIter->topologyIntersection(*leaf, zeroVal<typename TreeType1::ValueType>());
@@ -99,7 +99,7 @@ public:
inline void operator()(const typename TreeType1::LeafIter& lIter) const
{
- const Coord xyz = lIter->getOrigin();
+ const Coord xyz = lIter->origin();
const typename TreeType2::LeafNodeType* leaf = mOtherTree->probeConstLeaf(xyz);
if (leaf) {//leaf node
lIter->topologyDifference(*leaf, zeroVal<typename TreeType1::ValueType>());