Ejemplo n.º 1
0
 // Creates a holder for the image and adds it to the list
 public void AddImage(PackedImage image)
 {
     _holderList.Add(new StitchHolder(image));
 }
Ejemplo n.º 2
0
 public StitchHolder(PackedImage image)
 {
     Image = image;
     Width = image.Width;
     Height = image.Height;
     IsRotated = false;
 }