我遵循了在线教程,但我不明白教授如何设法从屏幕的左上角获取一个圆的距离:
//calculate the distance from epicenter (of a circle) to the top left corner of the screen
double theta = atan(epicenter.dy/epicenter.dx);
double distanceToCorner = epicenter.dy / sin(theta);
我想知道如何获得与所有其他屏幕角点的距离(并可能对所做的事情有所解释)。
谢谢