stuff-from-scratch/src/geometry/Point.cpp

19 lines
201 B
C++
Raw Normal View History

2020-05-02 07:31:03 +00:00
#include "Point.h"
Point::Point(double x, double y)
: mX(x),
mY(y)
{
}
Point::~Point()
{
};
std::shared_ptr<Point> Point::Create(double x, double y)
{
return std::make_shared<Point>(x, y);
}