niciki/snowflakes_statistics
The program generates arbitrary coordinates on the canvas, the radius of the snowflake. Then a check is made for the free space that this snowflake will occupy after drawing. If the check is successful, then drawing is performed, and then the generation of new coordinates, otherwise the program will regenerate the coordinates 3000 times, hoping that it will find those that satisfy the test for emptiness (the number of attempts is in the tests variable).The check is carried out by iterating over the data about all circles, which are stored in a sheet of ordered tuples (coordinate 'x', coordinate 'y', radius). If no free space was found, then one of the snowflakes drawn on the canvas is deleted. After drawing the specified number of snowflakes (the value of the variable number_of_snowflakes), drawing stops, using the matplotlib library, a graph of the dependence of drawing the i-th snowflake on the number of necessary coordinates and radius regeneration is built.
Python
No issues in this repository yet.