--- trunk/OOPSE-4/src/math/Vector3.hpp 2004/10/21 21:31:39 1630 +++ trunk/OOPSE-4/src/math/Vector3.hpp 2004/10/25 22:46:19 1644 @@ -59,6 +59,9 @@ namespace oopse { data_[1] = y; data_[2] = z; } + + /** Constructs and initializes from an array*/ + inline Vector3(double* array) : Vector(array) {} inline Vector3(const Vector& v) : Vector(v) {}