Skip to content

Commit

Permalink
doc: added note on not setting the "Scatter.transform" matrix directly
Browse files Browse the repository at this point in the history
  • Loading branch information
Zen-CODE committed Jun 6, 2014
1 parent 3e39b8b commit 9be839d
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions kivy/uix/scatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,6 +210,13 @@ def _set_do_translation(self, value):
:attr:`transform` is an :class:`~kivy.properties.ObjectProperty` and
defaults to the identity matrix.
.. note::
This matrix reflects the current state of the transformation matrix
but setting it directly will not trigger a re-rendering. To apply a
transformation, please use the :attr:`~Scatter.apply_transform` method.
'''

transform_inv = ObjectProperty(Matrix())
Expand Down

0 comments on commit 9be839d

Please sign in to comment.