Hello,

I've found a small bug when creating a ClutterBehaviour (with python
bindings and Gnome Introspection)

Python bindings:
>>> import clutter
>>> knots = "M 0 0 L 46340 0"
>>> path = clutter.Path(knots)
>>> path.get_length()
46340L
>>> knots = "M 0 0 L 46341 0"
>>> path = clutter.Path(knots)
>>> path.get_length()
2147483648L

Gnome Introspection:

>>> from gi.repository import Clutter
>>> knots = "M 0 0 L 46340 0"
>>> path = Clutter.Path()
>>> path.add_string(knots)
True
>>> path.get_length()
46340L
>>> knots = "M 0 0 L 46341 0"
>>> path.add_string(knots)
True
>>> path.get_length()
2147529988L


Carpe Noctem,

Pablo
_______________________________________________
clutter-app-devel-list mailing list
[email protected]
http://lists.clutter-project.org/listinfo/clutter-app-devel-list

Reply via email to