summaryrefslogtreecommitdiffstats
path: root/src/render/frontend/sphere.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/render/frontend/sphere.cpp')
-rw-r--r--src/render/frontend/sphere.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/render/frontend/sphere.cpp b/src/render/frontend/sphere.cpp
index 80926efb9..2c22e0da4 100644
--- a/src/render/frontend/sphere.cpp
+++ b/src/render/frontend/sphere.cpp
@@ -223,8 +223,9 @@ Qt3DCore::QNodeId Sphere::id() const
return m_id;
}
-bool Sphere::intersects(const RayCasting::QRay3D &ray, QVector3D *q) const
+bool Sphere::intersects(const RayCasting::QRay3D &ray, QVector3D *q, QVector3D *uvw) const
{
+ Q_UNUSED(uvw);
return intersectRaySphere(ray, *this, q);
}