32 UIPoint2D(
float x,
float y);
34 bool operator==(
const UIPoint2D& pos)
const;
35 bool operator!=(
const UIPoint2D& pos)
const;
38inline UIPoint2D::UIPoint2D()
43inline UIPoint2D::UIPoint2D(
float x,
float y)
49inline bool UIPoint2D::operator==(
const UIPoint2D& pos)
const
51 return (x == pos.x && y == pos.y);
54inline bool UIPoint2D::operator!=(
const UIPoint2D& pos)
const
56 return (x != pos.x || y != pos.y);
Definition uipoint2d.h:26