Remove gcc warning about uninitialized values
This commit is contained in:
parent
d99895805c
commit
a7255235e5
@ -122,7 +122,7 @@ IndexedMesh::hit_result
|
|||||||
IndexedMesh::query_ray_hit(const Vec3d &s, const Vec3d &dir) const
|
IndexedMesh::query_ray_hit(const Vec3d &s, const Vec3d &dir) const
|
||||||
{
|
{
|
||||||
assert(is_approx(dir.norm(), 1.));
|
assert(is_approx(dir.norm(), 1.));
|
||||||
igl::Hit hit;
|
igl::Hit hit{-1, -1, 0.f, 0.f, 0.f};
|
||||||
hit.t = std::numeric_limits<float>::infinity();
|
hit.t = std::numeric_limits<float>::infinity();
|
||||||
|
|
||||||
#ifdef SLIC3R_HOLE_RAYCASTER
|
#ifdef SLIC3R_HOLE_RAYCASTER
|
||||||
|
Loading…
Reference in New Issue
Block a user