--- trunk/OOPSE-1.0/utils/sysbuilder/Vector3d.hpp 2004/07/30 14:44:10 1443 +++ trunk/OOPSE-1.0/utils/sysbuilder/Vector3d.hpp 2004/07/30 14:51:44 1444 @@ -23,12 +23,6 @@ class Vector3d{ this->z = z; } - Vector3d(double* r){ - this->x = r[0]; - this->y = r[1]; - this->z = r[2]; - } - Vector3d(const Vector3d& v1){ this->x = v1.x; this->y = v1.y;