.. module:: NatronEngine .. _Int2DParam: Int2DParam ********** **Inherits** :doc:`IntParam` **Inherited by:** :doc:`Int3DParam` Synopsis -------- See :doc:`IntParam` for more details. Functions ^^^^^^^^^ - def :meth:`get` () - def :meth:`get` (frame) - def :meth:`set` (x, y) - def :meth:`set` (x, y, frame) Detailed Description -------------------- .. method:: NatronEngine.Int2DParam.get() :rtype: :class: `Int2DTuple` Returns a :doc:`Int2DTuple` containing the [x,y] value of this parameter at the timeline's current time. .. method:: NatronEngine.Int2DParam.get(frame) :param: :class:`float` :rtype: :class: `Int2DTuple` Returns a :doc:`Int2DTuple` containing the [x,y] value of this parameter at the given *frame*. .. method:: NatronEngine.Int2DParam.set(x, y) :param x: :class:`int` :param y: :class:`int` Same as :func:`set(x)` but for 2-dimensional integers. .. method:: NatronEngine.Int2DParam.set(x, y, frame) :param x: :class:`int` :param y: :class:`int` :param frame: :class:`float` Same as :func:`set(x,frame)` but for 2-dimensional integers.