git.fiddlerwoaroof.com
Raw Blame History
import numpy

class Point(object):
    def __init__(self, x,y):
	self.x = x
	self.y = y
	self.pos = (x,y)
	self.name = None

class Map(object)