Lines Matching defs:rotate
3646 def rotate(self, other, context=None):
3674 # let's rotate!
5373 def rotate(self, a, b):
5382 >>> ExtendedContext.rotate(Decimal('34'), Decimal('8'))
5384 >>> ExtendedContext.rotate(Decimal('12'), Decimal('9'))
5386 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('-2'))
5388 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('0'))
5390 >>> ExtendedContext.rotate(Decimal('123456789'), Decimal('+2'))
5392 >>> ExtendedContext.rotate(1333333, 1)
5394 >>> ExtendedContext.rotate(Decimal(1333333), 1)
5396 >>> ExtendedContext.rotate(1333333, Decimal(1))
5400 return a.rotate(b, context=self)