Tagged Questions
3
votes
4answers
994 views
Rect::contains(Point) or Point::is_inside(Rect)
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), ...
0
votes
0answers
160 views
Symmetric Bitwise Equations with a Small Solution Set
Suppose I know the value of a^b (or XOR(a,b)). It is impossible to know a and b for two reasons: most importantly, (i) there are "infinite" solutions and (ii) the solutions are symmetric: if (a,b) is ...