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