Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            var layout1 = new CircularCloudLayouter(new Point(0, 0));
            var layout2 = new CircularCloudLayouter(new Point(80, 30));
            var layout3 = new CircularCloudLayouter(new Point(-200, 420));

            DrawRandom(layout1, 10, (100, 100), (500, 500), "0x0_15_100x100_500x500.png");
            DrawRandom(layout2, 500, (100, 100), (500, 100), "80x30_500_100x100_500x100.png");
            DrawRandom(layout3, 250, (100, 100), (500, 100), "-200x420_250_100x100_500x100.png");
        }
Ejemplo n.º 2
0
 public string[] GetDynamicArgs(DrawRandom action)
 {
     return(Group(action.Chief.Index));
 }