Skip to content
Snippets Groups Projects
Commit bfd7075d authored by Gigg, Martyn Anthony's avatar Gigg, Martyn Anthony
Browse files

A few minor things to improve efficiency for intersection calcs

Refs #10169
parent 9986c9e3
No related merge requests found
...@@ -82,7 +82,7 @@ namespace Mantid ...@@ -82,7 +82,7 @@ namespace Mantid
double distance(const Kernel::V3D&) const; ///< distance from a point double distance(const Kernel::V3D&) const; ///< distance from a point
double getDistance() const { return Dist; } ///< Distance from origin double getDistance() const { return Dist; } ///< Distance from origin
Kernel::V3D getNormal() const { return NormV; } ///< Normal to plane (+ve surface) const Kernel::V3D & getNormal() const { return NormV; } ///< Normal to plane (+ve surface)
void rotate(const Kernel::Matrix<double>&); void rotate(const Kernel::Matrix<double>&);
void displace(const Kernel::V3D&); void displace(const Kernel::V3D&);
......
...@@ -292,9 +292,11 @@ Intersection::isValid(const Kernel::V3D& Vec) const ...@@ -292,9 +292,11 @@ Intersection::isValid(const Kernel::V3D& Vec) const
@retval 0 :: Vec is outside object. @retval 0 :: Vec is outside object.
*/ */
{ {
if (!A || !B) if(A && B)
return false; {
return (A->isValid(Vec) && B->isValid(Vec)) ? true : false; return (A->isValid(Vec) && B->isValid(Vec));
}
return false;
} }
bool bool
...@@ -849,9 +851,10 @@ SurfPoint::isValid(const Kernel::V3D& Pt) const ...@@ -849,9 +851,10 @@ SurfPoint::isValid(const Kernel::V3D& Pt) const
*/ */
{ {
if (key) if (key)
return (key->side(Pt)*sign)>=0 ? true : false; {
else return (key->side(Pt)*sign)>=0;
return false; }
return false;
} }
bool bool
......
...@@ -220,8 +220,7 @@ Plane::side(const Kernel::V3D& A) const ...@@ -220,8 +220,7 @@ Plane::side(const Kernel::V3D& A) const
@retval 0 :: A is on the plane itself (within tolerence) @retval 0 :: A is on the plane itself (within tolerence)
*/ */
{ {
double Dp=NormV.scalar_prod(A); double Dp=NormV.scalar_prod(A)-Dist;
Dp-=Dist;
if (Tolerance<fabs(Dp)) if (Tolerance<fabs(Dp))
return (Dp>0) ? 1 : -1; return (Dp>0) ? 1 : -1;
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment