comparison Framework/Toolbox/CoordinateSystem3D.h @ 647:6af3099ed8da

uncoupling OrthancStone::SlicesSorter from OrthancStone::Slice
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 13 May 2019 17:03:46 +0200
parents b70e9be013e4
children f7c236894c1a
comparison
equal deleted inserted replaced
646:b4fe9642e83b 647:6af3099ed8da
100 const Vector& edgeTo) const; 100 const Vector& edgeTo) const;
101 101
102 bool IntersectLine(Vector& p, 102 bool IntersectLine(Vector& p,
103 const Vector& origin, 103 const Vector& origin,
104 const Vector& direction) const; 104 const Vector& direction) const;
105
106 // Returns "false" is the two planes are not parallel
107 static bool GetDistance(double& distance,
108 const CoordinateSystem3D& a,
109 const CoordinateSystem3D& b);
105 }; 110 };
106 } 111 }