PolyVector2.cpp 330 B

123456789101112131415161718192021222324
  1. /*
  2. * PolyVector2.cpp
  3. * Poly
  4. *
  5. * Created by Ivan Safrin on 3/14/08.
  6. * Copyright 2008 __MyCompanyName__. All rights reserved.
  7. *
  8. */
  9. #include "PolyVector2.h"
  10. using namespace Polycode;
  11. Vector2::Vector2() : x(0), y(0) {
  12. }
  13. Vector2::Vector2(Number x, Number y) {
  14. this->x = x;
  15. this->y = y;
  16. }
  17. Vector2::~Vector2() {
  18. }