public Bool4(Bool3 xyz, bool w) { X = xyz.X; Y = xyz.Y; Z = xyz.Z; W = w; }
private bool Eq(Bool3 other) { return(X == other.X && Y == other.Y && Z == other.Z); }