public Region3D(Index3D index, Size3D size) { this.Index = index; this.Size = size; }
public bool Equals(Size3D other) { return(Width == other.Width && Height == other.Height && Depth == other.Depth); }
public bool Equals(Size3D other) { return Width == other.Width && Height == other.Height && Depth == other.Depth; }
public TmpCopyInfo(Index3D offset1, Index3D offset2, Size3D size) { this.Offset1 = offset1; this.Offset2 = offset2; this.Size = size; }