vector foo (float x, float y, float z) { vector v; v.x = x; v.y = y; v.z = z; return v; } int main () { return 0; }