Point
Public Methods
-
FXPoint()
- Constructors
-
FXPoint& operator=(const FXPoint& p)
- Assignment
-
FXPoint& operator+=(const FXPoint& p)
- Assignment operators
-
FXPoint operator-()
- Negation
Documentation
Point
FXPoint()
- Constructors
FXPoint& operator=(const FXPoint& p)
- Assignment
FXPoint& operator+=(const FXPoint& p)
- Assignment operators
FXPoint operator-()
- Negation
- This class has no child classes.
- Friends:
- FXbool operator==(const FXPoint& p,const FXPoint& q){ return p.x==q.x && p.y==q.y
FXbool operator!=(const FXPoint& p,const FXPoint& q){ return p.x!=q.x || p.y!=q.y
FXPoint operator+(const FXPoint& p,const FXPoint& q){ return FXPoint(p.x+q.x,p.y+q.y)
FXPoint operator+(const FXPoint& p,const FXSize& s){ return FXPoint(p.x+s.w,p.y+s.h)
FXPoint operator+(const FXSize& s,const FXPoint& p){ return FXPoint(s.w+p.x,s.h+p.y)
FXPoint operator-(const FXPoint& p,const FXPoint& q){ return FXPoint(p.x-q.x,p.y-q.y)
FXPoint operator-(const FXPoint& p,const FXSize& s){ return FXPoint(p.x-s.w,p.y-s.h)
FXPoint operator-(const FXSize& s,const FXPoint& p){ return FXPoint(s.w-p.x,s.h-p.y)
FXPoint operator*(const FXPoint& p,FXshort c){ return FXPoint(p.x*c,p.y*c)
FXPoint operator*(FXshort c,const FXPoint& p){ return FXPoint(c*p.x,c*p.y)
FXPoint operator/(const FXPoint& p,FXshort c){ return FXPoint(p.x/c,p.y/c)
FXPoint operator/(FXshort c,const FXPoint& p){ return FXPoint(c/p.x,c/p.y)
FXStream& operator<<(FXStream& store,const FXPoint& p)
FXStream& operator>>(FXStream& store,FXPoint& p)
Alphabetic index HTML hierarchy of classes or Java
This page was generated with the help of DOC++.