******** wx.Point ******** Inheritance diagram for `wx.Point`: | .. inheritance-diagram:: wx.Point | Description =========== A `wx.Point` is a useful data structure for graphics operations. It simply contains integer `x` and `y` members. .. seealso:: `wx.RealPoint `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `Get <#Get>`_ * `Set <#Set>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `x <#x>`_ * `y <#y>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(x=0, y=0) Create a `wx.Point` object. **Parameters:** * `x` (int): The `x` coordinate. * `y` (int): The `y` coordinate. | **Returns:** `wx.Point `_ -------- .. method:: Get() Return the `x` and `y` properties as a tuple. | **Returns:** `(x, y)` -------- .. method:: Set(x, y) Set both the `x` and `y` properties **Parameters:** * `x` (long) * `y` (long) -------- Properties ^^^^^^^^^^ .. attribute:: x See `Get <#Get>`_ and `Set <#Set>`_ .. attribute:: y See `Get <#Get>`_ and `Set <#Set>`_