我正在尝试按 O 点的极角对平面上的点进行排序。代码的简化版本如下所示:
bool comparePolar(point A, point B, point O){
//if point B lies to the left of the edge OA, return false
//return true
}
那么,如何在调用 sort 函数时将点 O 传递给该函数,它将使用 comparePolar 作为其比较函数?
我正在尝试按 O 点的极角对平面上的点进行排序。代码的简化版本如下所示:
bool comparePolar(point A, point B, point O){
//if point B lies to the left of the edge OA, return false
//return true
}
那么,如何在调用 sort 函数时将点 O 传递给该函数,它将使用 comparePolar 作为其比较函数?