11 lines
216 B
Python
11 lines
216 B
Python
|
|
class Sketch(object):
|
|
def __init__(self):
|
|
self.shapes = []
|
|
|
|
def __iter__(self):
|
|
return self.shapes.__iter__()
|
|
|
|
def __contains__(self, item):
|
|
return self.shapes.__contains__(item)
|