Package Things :: Module BoxOfTricks :: Class RoundRect
[frames] | no frames]

Class RoundRect

object --+
         |
        RoundRect

Use this to draw rectangles with rounded corners. Use the setup() method and pass in the width, height and radius. After that, call draw(ctx) with an optional x,y.

The rect is drawn from x,y in its center.

Instance Methods
 
__init__(self)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
 
setup(self, width=10, height=10, radius=20)
 
draw(self, ctx, x=0, y=0)

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties

Inherited from object: __class__

Method Details

__init__(self)
(Constructor)

 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)