SLA support gizmo does not use Grabber class anymore

This commit is contained in:
Lukas Matena 2019-02-04 12:33:59 +01:00
parent fab3025107
commit 9dff44a8ad
5 changed files with 41 additions and 64 deletions

View file

@ -163,7 +163,6 @@ EigenMesh3D::query_ray_hit(const Vec3d &s, const Vec3d &dir) const
hit_result ret(*this);
ret.m_t = double(hit.t);
ret.m_dir = dir;
ret.m_source = s;
if(!std::isinf(hit.t) && !std::isnan(hit.t)) ret.m_face_id = hit.id;
return ret;