Ejemplo n.º 1
0
 public Region3D(Index3D index, Size3D size)
 {
     this.Index = index;
     this.Size  = size;
 }
Ejemplo n.º 2
0
 public bool Equals(Size3D other)
 {
     return(Width == other.Width &&
            Height == other.Height &&
            Depth == other.Depth);
 }
Ejemplo n.º 3
0
 public bool Equals(Size3D other)
 {
     return Width == other.Width
         && Height == other.Height
         && Depth == other.Depth;
 }
Ejemplo n.º 4
0
 public TmpCopyInfo(Index3D offset1, Index3D offset2, Size3D size)
 {
     this.Offset1 = offset1;
     this.Offset2 = offset2;
     this.Size = size;
 }