Skip to content
Snippets Groups Projects
Commit 98a99ffd authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused ZLimits::intersects

parent 2272c996
No related branches found
No related tags found
1 merge request!1174IFormFactor and children: replace BottomZ, TopZ by spanZ
......@@ -43,10 +43,6 @@ public:
double thicknessOr0() const { return isFinite() ? m_zmax - m_zmin : 0; }
bool contains(double z) const { return m_zmin <= z && z <= m_zmax; }
bool intersects(const ZLimits& other) const
{
return other.zBottom() < m_zmax && other.zTop() > m_zmin;
}
std::pair<double, double> pair() const { return {m_zmin, m_zmax}; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment