Beispiel #1
0
 /// <summary>
 /// Easy conversion from SizeD to Point2D
 /// </summary>
 public Point2D(SizeD sz)
 {
     this.x = sz.Width;
     this.y = sz.Height;
 }
Beispiel #2
0
 static SizeD()
 {
     Empty = new SizeD();
 }