More window cleaning
This commit is contained in:
parent
6adc441e6f
commit
53c98a227d
29 changed files with 422 additions and 261 deletions
|
@ -18,6 +18,16 @@ public:
|
|||
unsigned GetX() const;
|
||||
|
||||
unsigned GetY() const;
|
||||
|
||||
bool operator==(const DiscretePoint& rhs) const
|
||||
{
|
||||
return (mX == rhs.mX)
|
||||
&& (mY == rhs.mY);
|
||||
}
|
||||
bool operator!=(const DiscretePoint& rhs) const
|
||||
{
|
||||
return !operator==(rhs);
|
||||
}
|
||||
};
|
||||
|
||||
using Pixel = DiscretePoint;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue