Open dulimarta opened 2 years ago
The function doIntersection may redundantly compute intersection of the same pair twice. For instance, out of the following two calls
doIntersection
doIntersection(Line1, Circle4)
doIntersection(Circle4, Line1)
only one of the calls should be effective
The function
doIntersection
may redundantly compute intersection of the same pair twice. For instance, out of the following two callsdoIntersection(Line1, Circle4)
anddoIntersection(Circle4, Line1)
only one of the calls should be effective