remove unnecessary initialization
This commit is contained in:
parent
03d31409e5
commit
ba4d3271c4
2
external/resinsight/LibCore/cvfPlane.cpp
vendored
2
external/resinsight/LibCore/cvfPlane.cpp
vendored
@ -374,7 +374,7 @@ bool Plane::intersect(const Plane& other, Vec3d* point, Vec3d* direction) const
|
|||||||
|
|
||||||
CVF_ASSERT(point);
|
CVF_ASSERT(point);
|
||||||
|
|
||||||
double invdet = UNDEFINED_DOUBLE;
|
double invdet;
|
||||||
|
|
||||||
Vec3d normal1 = this->normal();
|
Vec3d normal1 = this->normal();
|
||||||
Vec3d normal2 = other.normal();
|
Vec3d normal2 = other.normal();
|
||||||
|
Loading…
Reference in New Issue
Block a user