return true;
}
if (!(o instanceof ReadOnlyRing)) {
return false;
}
final ReadOnlyRing comp = (ReadOnlyRing) o;
return getInnerRadius() == comp.getInnerRadius() && getOuterRadius() == comp.getOuterRadius()
&& _up.equals(comp.getUp()) && _center.equals(comp.getCenter());
}