public static bool IsEqualTo(VectorProperty <T> lhs, VectorProperty <T> rhs) { return(IsEqualTo(lhs.Value, rhs.Value)); }
internal VectorProperty(VectorProperty <T> cloneMe, VectorProperty <T> sentinelNotUsed) : base(cloneMe, sentinelNotUsed) { this.minValues = cloneMe.minValues; this.maxValues = cloneMe.maxValues; }
public bool IsEqualTo(VectorProperty <T> rhs) { return(IsEqualTo(this, rhs)); }