Should an API provide Rect::contains(Point) or Point::is_inside(Rect) or both? or Math::contains(Point, Rect) cause it's symmetric?
The same Q goes for LineSegment::contains(Point), Rect::fully_contains(Circle) etc.
|
|
|
|
|
|
|
Regarding the relation between |
||||||
|
|
|
Depends entirely on what makes the expression of your program cleaner, more aligned with the problem you're trying to solve. So to some extent, all of the above should be fine in different contexts. However, generally speaking, I am slightly tilted in the favour of
An important thing to remember is, don't consider the design of your classes as written in stone. Just go ahead and pick the design that looks best now. Whenever your needs change, you can and you should alter it. This is what is called refactoring. |
|||
|
|
|
|
I'm with Frederick on the Math::contains approach, although the biggest drawback in my opinion is that the developer loses the discoverability of IntelliSense in finding the method. That's one of my beefs with Boost and STL. An example of where Rect::contains eventually goes wrong is the iPhone SDK's method of drawing strings, which is basically String::drawInRect. |
||
|
|
|
|
It depends on the implementation, but like Federick I would also tend to go for Math::contains(Rect,Point), over Rect::contains(Point). The reason for this is that the latter leads to an object hierarchy which includes the contains member function as a virtual, which gets overridden from class to class. This can have a potentially significant overhead where you are dealing with very large numbers of rectangles and similar primitives. |
||
|
|