remove unnecessary initialization

This commit is contained in:
Arne Morten Kvarving 2023-06-01 09:35:10 +02:00
parent 03d31409e5
commit ba4d3271c4

View File

@ -374,7 +374,7 @@ bool Plane::intersect(const Plane& other, Vec3d* point, Vec3d* direction) const
CVF_ASSERT(point);
double invdet = UNDEFINED_DOUBLE;
double invdet;
Vec3d normal1 = this->normal();
Vec3d normal2 = other.normal();