Fengx1n's picture
Initial DEMO
e53fda1
raw
history blame contribute delete
85 Bytes
class Vec2D:
def __init__(self, x=0, y=0):
self.x = x
self.y = y