Constructs a Vector with all elements initialized separately
Vec3 v; v = Vec3(1, 2); assert(v == [1, 2, 0]); v = Vec3(1, 2, 3); assert(v == [1, 2, 3]);
See Implementation
Constructs a Vector with all elements initialized separately