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/solid/src')
-rwxr-xr-xextern/solid/src/complex/DT_BBoxTree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/extern/solid/src/complex/DT_BBoxTree.h b/extern/solid/src/complex/DT_BBoxTree.h
index 995da05573a..3d9da6e34ba 100755
--- a/extern/solid/src/complex/DT_BBoxTree.h
+++ b/extern/solid/src/complex/DT_BBoxTree.h
@@ -136,7 +136,7 @@ public:
: DT_Pack<Shape1, Shape2>(a, b),
m_margin(margin)
{
- m_b_cbox += computeCBox(margin, m_a.m_inv_xform);
+ this->m_b_cbox += computeCBox(margin, this->m_a.m_inv_xform);
}
MT_Scalar m_margin;
@@ -185,7 +185,7 @@ bool ray_cast(const DT_BBoxTree& a, const DT_RootData<Shape>& rd,
if (a.m_type == DT_BBoxTree::LEAF)
{
- return ::ray_cast(rd, a.m_index, source, target, lambda, normal);
+ return ray_cast(rd, a.m_index, source, target, lambda, normal);
}
else
{