************ wx.RealPoint ************ Inheritance diagram for `wx.RealPoint`: | .. inheritance-diagram:: wx.RealPoint | Description =========== A `wx.RealPoint` is a useful data structure for graphics operations. It contains floating point `x` and `y` members. See `wx.Point `_ for an integer version. .. seealso:: `wx.Point `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `Get <#Get>`_ * `Set <#Set>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `x <#x>`_ * `y <#y>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(x=0.0, y=0.0) Create a `wx.RealPoint` object. **Parameters:** * `x` (double): the `x` coordinate. * `y` (double): the `y` coordinate. | **Returns:** `wx.RealPoint `_ -------- .. 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` (double) * `y` (double) -------- Properties ^^^^^^^^^^ .. attribute:: x See `Get <#Get>`_ and `Set <#Set>`_ .. attribute:: y See `Get <#Get>`_ and `Set <#Set>`_