1. Martin - 10 Октября, 2022 - 17:38:08 - перейти к сообщению
Как нарисовать ровный круг с помощью мышки по центру экрана мышкой?
2. Zireael - 10 Октября, 2022 - 18:09:16 - перейти к сообщению
CODE:
int r = 300; // радиус
int step = 2; // шаг
int WidthDisplay, HeightDisplay, ColorDisplay;
getdisplay(ColorDisplay, WidthDisplay, HeightDisplay);
for (int i=0; i<360; i=i+step)
{
int x = WidthDisplay / 2 + cos(i) * r;
int y = HeightDisplay / 2 + sin(i) * r;
mousemove (x, y);
sleep (10);
}
int step = 2; // шаг
int WidthDisplay, HeightDisplay, ColorDisplay;
getdisplay(ColorDisplay, WidthDisplay, HeightDisplay);
for (int i=0; i<360; i=i+step)
{
int x = WidthDisplay / 2 + cos(i) * r;
int y = HeightDisplay / 2 + sin(i) * r;
mousemove (x, y);
sleep (10);
}