| 48 | } |
| 49 | |
| 50 | double VHAngleToX(ImVec2 a, ImVec2 b) { |
| 51 | return atan2((b.y - a.y), (b.x - a.x)); |
| 52 | } |
| 53 | |
| 54 | std::array<ImVec2, 4> VHMBBCalculate(std::vector<ImVec2> hull, double psz) { |
| 55 | std::array<ImVec2, 4> box; |
no outgoing calls
no test coverage detected