/* 
 * File:   pt_t.cpp
 * Author: carlos
 * 
 * Created on 9 de noviembre de 2012, 20:31
 */

#include "pt_t.h"

Pt_t::Pt_t() {
    this->x = 0;
    this->y = 0;
}

Pt_t::Pt_t(const Pt_t& orig) {
    this->x = orig.x;
    this->y = orig.y;
}

Pt_t::~Pt_t() {
}

