--- trunk/src/math/Vector3.hpp 2004/10/25 17:03:56 150 +++ trunk/src/math/Vector3.hpp 2004/10/25 22:46:19 151 @@ -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) {}