Sets the components of this 3D vector from an array.
Vector3 fromArray(List<double> array, [int offset = 0 ]) { x = array[ offset + 0 ]; y = array[ offset + 1 ]; z = array[ offset + 2 ]; return this; }