1. PHP / Говнокод #21805

    −16

    1. 01
    2. 02
    3. 03
    4. 04
    5. 05
    6. 06
    7. 07
    8. 08
    9. 09
    10. 10
    11. 11
    12. 12
    13. 13
    14. 14
    15. 15
    16. 16
    17. 17
    18. 18
    19. 19
    20. 20
    21. 21
    22. 22
    23. 23
    24. 24
    25. 25
    26. 26
    27. 27
    28. 28
    29. 29
    30. 30
    31. 31
    32. 32
    33. 33
    34. 34
    35. 35
    for ($i = 1; $i != 101; $i++)
    {
    	c('Text' . $i)->free();
    	c("Block".$i)->free();
    }
    $y = array(
    	1 => ceil(rand(0, 450) / 50) * 50
    );
    $x = array(
    	1 => ceil(rand(0, 450) / 50) * 50
    );
    for ($i = 1; $i != 100; $i++)
    {
    	array_push($x, ceil(rand(0, 500) / 50) * 50);
    	array_push($y, ceil(rand(0, 450) / 50) * 50);
    }
    for ($i = 1; $i != count($x) + 1; $i++)
    {
    	$block            = new TShape();
    	$block->w         = 50;
    	$block->h         = 50;
    	$block->x         = $x[$i];
    	$block->y         = $y[$i];
    	$block->name      = 'Block' . $i;
    	$block->parent    = c("Form1");
    	$text             = new TLabel();
    	$text->x          = $x[$i];
    	$text->y          = $y[$i];
    	$text->w          = 50;
    	$text->h          = 50;
    	$text->name       = 'Text' . $i;
    	$text->parent     = c("Form1");
    	$text->caption    = $i;
    	$text->font->size = 20;
    }

    Рандомный генератор динамический кубов в поле 500x500.

    Запостил: NodnolStudio, 09 Декабря 2016

    Комментарии (3) RSS

    Добавить комментарий