Example #1
0
def go():
	b = easy.BMP()
	b.ReadFromFile("up.bmp")

	for y in xrange(b.TellHeight()):
		for x in xrange(b.TellWidth()):
			if robin.disown(b(x,y)).Red == 0:
				s.paint(x*5, y*5)
Example #2
0
			def operate(self, s, n):
				return robin.disown(stl.string(str(s) + str(n)))
Example #3
0
			def operate(self, string, index):
				q = str(string)*index
				return robin.disown(stl.string(q))