/* * PolyVector2.cpp * TAU * * Created by Ivan Safrin on 3/14/08. * Copyright 2008 __MyCompanyName__. All rights reserved. * */ #include "PolyVector2.h" using namespace Polycode; Vector2::Vector2() : x(0), y(0) { } Vector2::Vector2(float x, float y) { this->x = x; this->y = y; } Vector2::~Vector2() { }