bool Point::operator < ( const Point & sec ) const{// первый ключ x if (x < sec.x) return true; if (x > sec.x) return false;// второй ключ y if (y < sec.y) return true; if (y > sec.y) return false;// третий ключ z if (z < sec.z) return true; return false;}