示例#1
0
 public CircularCloudLayouter(Point center)
 {
     cloud          = new List <Rectangle>();
     bufferCloud    = new List <Rectangle>();
     pivotRectangle = new PivotRectangle();
     if (center.X < 0 || center.Y < 0)
     {
         throw new ArgumentException();
     }
     this.center = center;
 }
示例#2
0
 public void SetUp()
 {
     pivot = new PivotRectangle();
 }