Beispiel #1
0
 /// <summary>
 /// Copies conversion parameters from the other NormSuit.
 /// </summary>
 public void CopyFrom(NormSuit other)
 {
     _transformTable[0] = other._transformTable[0];
     _transformTable[1] = other._transformTable[1];
     _transformTable[2] = other._transformTable[2];
     _transformTable[3] = other._transformTable[3];
     _suitCount         = other._suitCount;
 }
Beispiel #2
0
 /// <summary>
 /// Copies conversion parameters from the other NormSuit.
 /// </summary>
 public NormSuit(NormSuit other)
 {
     _transformTable = new int[4];
     CopyFrom(other);
 }