Determine If Two Points Are Near

前端 未结 4 1590
轮回少年
轮回少年 2020-12-20 22:30

I have the following:

bool AreNear(Point Old, Point Current)
{
    int x1 = Convert.ToInt32(Old.X);
    int x2 = Convert.ToInt32(Current.X);
    int y1 = Con         


        
4条回答
提交回复
热议问题