Two Rectangles Overlap Detection Algorithm in C++ October 31, 2019 algorithms, c / c++, geometry No Comments A rectangle is represented as a list , where (x1, y1) are the coordinates of its bottom-left corner, and (x2, y2) are the coordinates of its top-right corner. Two … [Continue Reading...]
How to Check if Any Three Points can Make a Triangle? May 6, 2019 algorithms, c / c++, geometry, math, programming languages No Comments How to Check if Any Three Points can Make a Triangle? There are many ways to check if any given three points in 2D plane can make a triangle. … [Continue Reading...]