32     ObjectPoint(
double x, 
double y, 
double z, 
int setId);
    35         double getX()
 const {
return this->
X;}
    36         double getY()
 const {
return this->
Y;}
    37         double getZ()
 const {
return this->
Z;}
    40         void setX(
double x) {this->X=x;}
    41         void setY(
double y) {this->Y=y;}
    42         void setZ(
double z) {this->Z=z;}
    45     void updatePoint(
const double x, 
const double y, 
const double z) {this->X=x; this->Y=y; this->Z=z;}
 void updatePoint(const double x, const double y, const double z)
double calcDistance(ObjectPoint p)