FXPoint

class FXPoint

Point

Public Methods

[more] FXPoint()
Constructors
[more]FXPoint& operator=(const FXPoint& p)
Assignment
[more]FXPoint& operator+=(const FXPoint& p)
Assignment operators
[more]FXPoint operator-()
Negation


Documentation

Point
o FXPoint()
Constructors

oFXPoint& operator=(const FXPoint& p)
Assignment

oFXPoint& operator+=(const FXPoint& p)
Assignment operators

oFXPoint 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++.