public Vector4(Vector4L v) { _x = v.X; _y = v.Y; _z = v.Z; _t = v.T; }
public Vector4i(Vector4L v) { _x = ((int)v.X); _y = ((int)v.Y); _z = ((int)v.Z); _t = ((int)v.T); }