X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/392751754e224616f01ce454830177b7a2b24b2b..e9a4b51d276200acbb1dd22633602585fd30e9a1:/docs/latex/wx/point.tex diff --git a/docs/latex/wx/point.tex b/docs/latex/wx/point.tex index 138bae1aa3..a1393199a5 100644 --- a/docs/latex/wx/point.tex +++ b/docs/latex/wx/point.tex @@ -1,3 +1,13 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +%% Name: point.tex +%% Purpose: wxPoint documentation +%% Author: wxTeam +%% Created: +%% RCS-ID: $Id$ +%% Copyright: (c) wxTeam +%% License: wxWindows license +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + \section{\class{wxPoint}}\label{wxpoint} A {\bf wxPoint} is a useful data structure for graphics operations. @@ -39,3 +49,36 @@ x member. y member. +\membersection{Operators}\label{wxpointoperators} + +\func{void}{operator $=$}{\param{const wxPoint\& }{pt}} + +Assignment operator. + + +\func{bool}{operator $==$}{\param{const wxPoint\& }{pt}} + +\func{bool}{operator $!=$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint}{operator $+$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint}{operator $-$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint\&}{operator $+=$}{\param{const wxPoint\& }{pt}} + +\func{wxPoint\&}{operator $-=$}{\param{const wxPoint\& }{pt}} + +Operators for comparison, sum and subtraction between \helpref{wxPoint}{wxpoint} objects. + + +\func{wxPoint}{operator $+$}{\param{const wxSize\& }{sz}} + +\func{wxPoint}{operator $-$}{\param{const wxSize\& }{sz}} + +\func{wxPoint\&}{operator $+=$}{\param{const wxSize\& }{sz}} + +\func{wxPoint\&}{operator $-=$}{\param{const wxSize\& }{sz}} + +Operators for sum and subtraction between a \helpref{wxPoint}{wxpoint} object and a +\helpref{wxSize}{wxsize} object. +