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