public void AppendItemAt(SVGTransform newItem, int index)
 {
     _listTransform.Insert(index, newItem);
     _totalMatrix = null;
 }
 public void AppendItem(SVGTransform newItem)
 {
     _listTransform.Add(newItem);
     _totalMatrix = null;
 }
예제 #3
0
 public void AppendItemAt(SVGTransform newItem, int index)
 {
     _listTransform.Insert(index, newItem);
     _totalMatrix = null;
 }
예제 #4
0
 public void AppendItem(SVGTransform newItem)
 {
     _listTransform.Add(newItem);
     _totalMatrix = null;
 }
예제 #5
0
 public void AppendItemAt(SVGTransform newItem, int index)
 {
     _listTransform.Insert(index, newItem);
 }
예제 #6
0
 public void AppendItem(SVGTransform newItem)
 {
     _listTransform.Add(newItem);
 }