.. Automatically generated file - do not modify.

.. function:: At(d, *args)
    
    Given a displayable `d`, applies each of the transforms in `args`
    to it. The transforms are applied in left-to-right order, so that
    the outermost transform is the rightmost argument. ::
    
        transform birds_transform:
             xpos -200
             linear 10 xpos 800
             pause 20
             repeat
    
        image birds = At("birds.png", birds_transform)
        

